Vistas de página en total

lunes, 18 de abril de 2011

Creando un Nas con Openfiler

Migre mis datos desde freenas a openfiler, el primero usa un formato de sistema de archivos llamado ufs, y el segundo usa ext3. asi que migre mis datos montandolos en ubuntu. con el siguiente comando, mo

sudo mount -t ufs -r -o ufstype=ufs2 /dev/sda1 /mnt/ufsdisk


este comando lo tome de aqui:
http://www.sysadmindiary.com/2008/03/mounting-freebsd-ufs2-file-system-on-ubuntu-linux/

I needed to read data from a USB connected hard disk formatted as  UFS by FreeBSD 6.x on an Ubuntu Linux system. As it turns out, it was   easier than I expected, as Ubuntu (well, Ubuntu Server at least) has  built in read-only support for UFS file systems. 
$ dmesg |grep "bsd:"
[ 31.178307] sda1:
$ sudo mkdir /mnt/ufsdisk
$ sudo mount -t ufs -r -o ufstype=ufs2 /dev/sda1 /mnt/ufsdisk
$

Check with mount to confirm that this has worked:

$ mount
[..]
/dev/sda1 on /mnt/backupdisk type ufs (ro,ufstype=ufs2)
$

All done.

No hay comentarios: