Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mount Partition with Debian

Status
Not open for further replies.

Informatic

Programmer
Oct 4, 2002
34
DE
How can I mount a partition in Debian.
I haven't done it by the installing of the system.
There is a file (/etc/fstab) that have informatioan wich PArtitions have to be mapped with start of the system.
But how can a add another partition(FAT32) to this file.

Help...........
 
add this line:

/dev/hda5 /mnt/win2 vfat noauto,owner 0 0

assuming that you want to mount /dev/hda5 on the directory /mnt/win2

you can add this by:
echo "/dev/hda5 /mnt/win2 vfat noauto,owner 0 0" >> /etc/fstab

note the >> after the echo command!

hope this will help ;)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top