mount
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
mount [2012/09/15 11:45] – admin | mount [2024/11/10 09:43] (current) – francesco | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ==== LINUX ==== | ||
+ | |||
+ | Per montare sotto Linux un disco esterno USB formattato in UFS da FreeBSD: | ||
+ | |||
+ | < | ||
+ | modprobe ufs | ||
+ | </ | ||
+ | |||
+ | e poi: | ||
+ | |||
+ | < | ||
+ | mount -t ufs -o ufstype=ufs2 /dev/sdb1 / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
Per montare la chiavetta usb. | Per montare la chiavetta usb. | ||
Line 22: | Line 37: | ||
---- | ---- | ||
+ | Se il disco esterno è in formato FAT32: | ||
+ | |||
+ | < | ||
+ | sudo mount -t vfat -o uid=francesco, | ||
+ | </ | ||
+ | ---- | ||
+ | Se devi montare una partizione ufs (FreeBSD): | ||
+ | |||
+ | < | ||
+ | sudo mount -t ufs -o ufstype=ufs2, | ||
+ | </ | ||
+ | |||
+ | **Ma non funziona, non riesco ad entrare in /home** | ||
+ | --- | ||
Se il disco che aggiungo è in formato Linux, il comando è ancora più semplice: | Se il disco che aggiungo è in formato Linux, il comando è ancora più semplice: | ||
Line 35: | Line 64: | ||
< | < | ||
sudo mount -t iso9660 /dev/scd0 / | sudo mount -t iso9660 /dev/scd0 / | ||
+ | </ | ||
+ | |||
+ | ==== FreeBSD ==== | ||
+ | |||
+ | Per montare il Quarto Disco formattato in EXT4 del serverHP sotto FreeBSD: | ||
+ | |||
+ | Dare questo comando per vedere come si chiama: | ||
+ | |||
+ | < | ||
+ | # gpart show | ||
+ | </ | ||
+ | |||
+ | caricare il modulo kernel di fuse: | ||
+ | |||
+ | < | ||
+ | kldload fuse | ||
+ | </ | ||
+ | |||
+ | o, a partire da FreeBSD 13.0: | ||
+ | |||
+ | < | ||
+ | kldload fusefs | ||
+ | </ | ||
+ | |||
+ | montarlo con questo comando: | ||
+ | |||
+ | < | ||
+ | ext4fuse /dev/ada3s1 / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Per montare un disco esterno in formato ntfs in FreeBSD: | ||
+ | |||
+ | caricare il modulo kernel di fuse: | ||
+ | |||
+ | < | ||
+ | kldload fusefs | ||
+ | </ | ||
+ | |||
+ | e poi: | ||
+ | |||
+ | < | ||
+ | ntfs-3g /dev/da0p1 / | ||
+ | </ | ||
+ | |||
+ | ---- | ||
+ | |||
+ | Per montare il Quarto Disco (UFS) del server HP: | ||
+ | |||
+ | < | ||
+ | root@FreeBSD: | ||
+ | </ | ||
+ | |||
+ | Per montare un disco esterno collegato via USB e formattato in UFS: | ||
+ | |||
+ | < | ||
+ | root@FreeBSD: | ||
</ | </ |
mount.1347702355.txt.gz · Last modified: 2012/09/15 11:45 by admin