USB Platte mit NTFS?
Verfasst: Fr 12. Jun 2009, 17:43
Moin Moin...
hab ne USB-Platte mit NTFS... kann Enigma2 das?
wenn ja ... Wie???
Danke
hab ne USB-Platte mit NTFS... kann Enigma2 das?
wenn ja ... Wie???
Danke
Code: Alles auswählen
mount /dev/sdb1 /mntCode: Alles auswählen
cat /proc/diskstatsmkdir /media/usb
mount -t vfat /dev/sdb1 /media/usb
habe aber keine ntfs usb platte um es zu testen.mount -t ntfs /dev/sdb1 /media/usb
... danach mit: "mount -t ntfs /dev/sdb1 /mnt/usb" die partition gemoutetErgebnis:
.
.
.
31 7 mtdblock7 0 0 0 0 0 0 0 0 0 0 0
8 16 sdb 1 0 8 460 0 0 0 0 0 460 460
8 17 sdb1 0 0 0 0
tf7700:~#
Funzt auch... sehr gut... man muss dann halt erst rebooten wenn man die Platte mounten will....
# the data partition has to be mounted to /hdd so that
# timeshift files are stored there and not on the root partition
mount -t ext2 /dev/sda3 /hdd
# probe if device "dev/sdb1" is present and mount it to /mnt/usb
if [ -e /dev/sdb1 ];
then
mount -t ntfs /dev/sdb1 /mnt/usb
fi
/etc/init.d/hostname start
...