Strapower

Miro' Bistrot

Come Creare una partizione con il Filesystem Ext3 ed effettuare il mount su Linux

Posted on Ottobre 31, 2011 in the computer-hardware, linux, Strapower! category

Il seguente comando creerà un ext3 filesystem sulla singola partizione /dev/sdb1 e chiamerà il volume label come /data

mkfs -t ext3 -L /data -v /dev/sdb1

Prima di creare il mount point (directory) eseguire il comando:

mkdir /data

Quando lo stesso è stato eseguito effettueremo il mount del ext3 filesystem /dev/sdb1 sulla partizione /data (directory appena creata):

mount -t ext3 /dev/sdb1 /data

Se non ci saranno errori te ne potrai accorgere con il comando:

df -h

Qualora desideri smontare il filesystem dalla partizione appena creata potrai utilizzare il comando :

umount /data

Per far si invece che /dev/sdb1 venga montato in automatico all’avvio di sistema bisogna andare a modificare /etc/fstab aggiungendo questa 1 riga fare come segue:

root@pippo# vi /etc/fstab

In FSTAB inserire:

LABEL=data   /newfs   ext3   defaults   1   2

salvare con :wq

Per effettuare il mount dalla mount point list di fstab eseguire il comando:

root@pippo# mount -a

Comments

Leave a Comment