How to mount windows drives in Ubuntu 6.06?

Status
Not open for further replies.

alanpaladka

Journeyman
Friends,

I'm not able to open the windows drives in Ubuntu even though they are listed. So can anyone guide me what to write in "fstab" inorder to mount them using "pmount" command(with example)?

Thanks:)
 

The Outsider

Beneath The Eyelids
they get automatically mounted when u istall it, in live cd mode u can see them but they aren't mounted.

there'll be a workaround to mount them in live cd too.
 

gary4gar

GaurishSharma.com
u can use mount command in root
Code:
$mount -t[ntfs][fat32] /dev/hda* /mnt/windows

where
*=partion no. Type fdisk -l for more info
choose anyone from NTFS or FAT32
create a folder in /mmt with name "windows"
 

ray|raven

Think Zen.
Open a terminal and create a folder in the /media directory using sudo.
Ex:
cd /media
sudo mkdir Disk1

Then open Disks from
System>Administration>Disks

Here click your hard-disk and select partitions tab.
select the partition you want to mount and enter the path to the newly created directory and click enable.
Repeat for all your partitons.

Regards...
ray
 

vinutux

Broken In
1. Alt+F2 and type gksu nautilus
2 . they ask root passwor type ur root password
3 now nautilus open in root mode
4 go /etc in nautilus and find fstab
5 open it right click with gedit
6 add lines
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda8 / ext3 defaults,errors=remount-ro 0 1
/dev/hda1 /media/hda1 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda5 /media/hda5 vfat defaults,utf8,umask=007,gid=46 0 1
/dev/hda6 /media/hda6 vfat defaults,utf8,umask=007,gid=46 0 1

/dev/hda9 /media/hda9 ext3 defaults 0 2
/dev/hda7 none swap sw 0 0
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0

7 save it -----it change depeds ur system and setting
8 make appropreate folders here it was in /media make folders in names like hda1 hda5 and hda6:cool::cool::cool:
 
S

sariq

Guest
see post# 9,10,11 & 13 of

*www.thinkdigit.com/forum/showthread.php?t=36169
 
Status
Not open for further replies.
Top Bottom