Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

mounting other partitions

Status
Not open for further replies.

elecomm

Junior Member level 3
Joined
Jul 16, 2005
Messages
26
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,283
Activity points
1,524
hi all,
I am very new to LINUX...
I installed FC3...I tried to mount the other partitions on my HDD doing this...
1-mkdir /mnt/drive1
2-mount /dev/hdb3 /mnt/drive1

when I browse the folder I can see the other partition..however,I have to do this everytime I restart my PC...someone told me I to write some lines in a file called fstab...I dont know exactly what to write?? please help...
thnx
 

You need the option -t to for the type of partition:
-> mount -t vfat /dev/..... (fat and fat32 partitions)
-> mount -t ntfs /dev/..... (ntfs partitios)

Hope this help.
 

dipal_z said:
try this h**p://www.tuxfiles.org/linuxhelp/fstab.html
thank you so much...this helped a lot.... :wink:
 

but ntfs filies doesnt work
 

to mount ntfs, see the following links:
**broken link removed**
 

Use the mount and umount commands.

This example mounts a CD drive:

# mount -r -t iso9660 /dev/scd0 /cdrom


-r means read-only; -t iso9660 is the filesystem type. /dev/scd0 is the name the kernel assigns to the device. /cdrom is the directory in which it is mounted. The /cdrom directory must already be present before you try to mount the disk.

To find the filesystem type, use the file command:

$ file - < /dev/scd0

/dev/stdin: ISO 9660 CD-ROM filesystem data 'Data1


You can omit the -r (read-only) flag when mounting a CD-ROM. It will complain, but it'll mount the disk anyway:

# mount -t iso9660 /dev/scd0 /cdrom

mount: block device /dev/scd0 is write-protected, mounting read-only


This mounts a floppy disk readable/writable:

# mount -w /dev/fd0 /floppy


The following command mounts a USB storage device. The noatime option should be used on rewritable media that have a limited number of rewrites, such as CD/DVD-RW and flash storage devices:

# mount -w -o noatime /dev/sda1 /memstick


To unmount the device, use:

# umount /memstick
 

mr_byte31 said:
but ntfs filies doesnt work

If your kernel does not support NTFS there is no way you can mount them. Posting Kernel version might fetch you some help.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top