ITBazar, informatica 100%

l’informatica alla portata di tutti!

Leggere i files Linux Ext2 anche da Windows XP / Vista

Inviato da Domenico Dibello il 22 Aprile 2008

Partizione Linux Ext2, montata in Windows Vista

Chiunque usi un sistema Dual Boot troverà comodo avere uno strumento che gli permetta di leggere nelle partizioni Ext2 /Ext3 usate da Linux anche durante l’avvio con Windows.  A questo scopo può esservi utile un Tool completamente gratuito rilasciato in licenza Freeware (non è Opensource) che permette di montare una qualsiasi partizione Ext2 in lettura e scrittura creando un nuovo volume windows. Il programma si chiama Ext2IFS, è piccolo solo 1.38 MB e lo potete scaricare da qui.

Una serie di caratteristiche tecniche riportate dall’autore del software:

  • Supports Windows NT 4.0, Windows 2000, Windows XP, Windows 2003 and Windows Vista [new].
  • Supports both the 32 bit x86 and the 64 bit x64 platform [new].
  • Includes drivers with a digital signature for Windows Vista x64 [new].
  • All operations you would expect: Reading and writing files, listing directories, creating, renaming, moving and deleting files or directories, querying and modifying the volume’s label.
  • UTF-8 encoding [new].
  • Files larger than 2 GBytes. (Please read the FAQ section, too.)
  • Supports hash indexed (htree) directories (utilizes the so-called dir_index feature of Ext3) [new].
  • Full plug-n-play functionality. When a drive is removed, the corresponding drive letter is deleted [new].
  • Supports use of the Windows mountvol utility to create or delete drive letters for Ext2 volumes [new] (except on Windows NT 4.0). This is useful for scripts. (Please read the FAQ section, too.)
  • A global read-only option is provided [new].
  • File names that start with a dot “.” character are treated as hidden [new].
  • Supports GPT disks if the Windows version used also does [new].
  • Paging files are supported. (A paging file is a file “pagefile.sys”, which Windows swaps virtual memory to.) Users may create paging files at NT’s control panel at Ext2 volumes.
  • Specific functions of the I/O subsystem of NT: Byte range locks, notification of changes of directories, oplocks (which are required by the NT LAN manager for sharing files via SMB).

 Sito del Software: http://www.fs-driver.org/index.html

Pubblicato in ITbazar, Linux, Unix, Windows | Nessun Commento »

Guida rapida: Ripristinare grub e linux dopo l’installazione di windows in 10 secondi

Inviato da Domenico Dibello il 11 Febbraio 2008

Hard disk partizioni recuperare

Avete installato Windows su un sistema in cui c’era Linux, adesso non funziona più niente? Questa è la punizione che vi meritate!!!! Sciagurati! Tuttavia potete avviare con una Live qualsiasi (Cd di Ubuntu) aprire un terminale e digitare…

$ sudo -s
$ cd /mnt
$ mkdir hdd
$ mount /dev/sda3 hdd
$ mount -o bind /dev hdd/dev
$ chroot hdd
$ grub-install /dev/sda
$ reboot

N.B. sda3 va sostituito con la partizione in cui è presente l’installazione di linux, se non si conosce basta fare “sudo fdisk -l” e vedere quale partizione ha il filesystem Ext3

Pubblicato in ITbazar, Linux | Nessun Commento »