Algunos libros gratuitos de Microsoft

  • February 13, 2014
  • cybercaronte
  • Buena colección de libros que Microsoft Press ofrece de forma gratuita en formato PDF, epub y mobi.

    No son muchos pero tienen muy buena pinta (sobre todo si estás interesado en System Center, hay varios de ellos).

    Introducing Microsoft System Center 2012 R2
    Introducing Microsoft System Center 2012 R2 Mitch Tulloch with Symon Perriman and the System Center team January 2014 180 pages
    Get a high-level overview of System Center 2012 R2—and get a running start transforming your datacenter and cloud-optimizing your business. This guide introduces core features and functionality, with technical advice and under-the-hood insights from a Microsoft MVP and members of the System Center team at Microsoft.

     Download the PDF (12.4 MB) Download the EPUB file (24.3 MB) Download the Mobi for Kindle file (43.1 MB)

    Introducing Windows Server 2012 R2
    Introducing Windows Server 2012 R2 Mitch Tulloch November 2013 242 pages
    Get a head start evaluating Windows Server 2012 R2—with technical insights from a Microsoft MVP and members of the Windows Server product team. Based on final Windows Server 2012 R2 release-to-manufacturing (RTM) software, this guide introduces new features and capabilities, with scenario-based advice on how the platform can meet the needs of your business. Get the high-level overview you need to begin preparing your deployment now.

     Download the PDF (8.0 MB) Download the EPUB file (22.5 MB) Download the Mobi for Kindle file (40.3 MB)

    Programming Windows Store Apps with HTML, CSS, and JavaScript, Second Edition (Second Preview)
    Programming Windows Store Apps with HTML, CSS, and JavaScript, Second Edition (Second Preview) Kraig Brockschmidt October 2013 750 pages

    Microsoft Press is pleased to offer the second preview of Kraig Brockschmidt’s in-depth ebook on writing Windows Store apps using HTML, CSS3, and JavaScript on the Windows 8.1 platform.

    We’ll be publishing the final ebook (with 20 chapters and 4 appendices) in March/April in PDF, EPUB, and Mobi for Kindle formats. In the meantime, enjoy this preview! Download the PDF (16.40 MB) Download the book’s companion files (132 MB

    .NET Technology Guide for Business Applications
    .NET Technology Guide for Business Applications Cesar de la Torre and David Carmona November 2013
    This guide will help you select the right Microsoft development technologies and approaches for your custom .NET application development, depending on the priorities you have for your application and business domain. It is targeted to decision makers, software architects, development leads, and developers who are involved in selecting which technologies to use for their applications and projects, and specifically covers custom enterprise application development, although independent software vendors (ISVs) might also find the information and recommendations useful.

     Download the PDF (6.0 MB).

    Lista completa aquí.

Guía avanzada para sincronizar datos con rsync

  • February 13, 2014
  • cybercaronte
  • 1-rsyncheader

    El protocolo rsync es en apariencia, sencillo de utilizar. En cambio si profundizamos en sus características avanzadas veremos que es una herramienta realmente potente para hacer copias de seguridad, sincronizar información e incluso para hacer copias incrementales con snapshots. Si no conoces rsync, te recomendamos que antes leas este artículo, también de HowToGeek, donde hacen una introducción al protocolo: how to use rsync to backup your data on Linux.

    En cambio este otro artículo es más avanzado y además está orientado para usuarios de Linux como de Windows. De hecho al principio del mismo se explica cómo instalar todo el entorno necesario para ejecutar rsync en Windows. Luego se explican los comandos necesarios para realizar backups y sincronización de archivos, terminando con los snapshots (quizás la característica más interesante de rsync). Si accidentalmente borras un fichero o un virus los corrompe, si ejecutas rsync para backup tus copias de seguridad se sobreecribirán con estos ficheros corruptos. Para evitarlo podemos utilizar la característica de los snapshots (instantánea del sistema) de rsync, que sencillamente consiste en que los ficheros modificados se copian en ficheros/carpetas distintos/as cada vez que se ejecuta el script de backup. Esto provocaría problemas de consumo de tiempo así como de espacio pero los snapshots utilizan una característica llamada "hardlink" que evita estos problemas (en el artículo te explica este término con ejemplos).

    Si quieres montar un buen sistema de copias de seguridad, robusto y fiable, no te pierdas este artículo de HowToGeek.