Results 1 to 5 of 5
hi i m using fedora 12
[root@localhost ved]# fdisk -l
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = ...
- 02-09-2010 #1
mounting other partition fedora 12
hi i m using fedora 12
[root@localhost ved]# fdisk -l
Disk /dev/sda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0xdff7dff7
Device Boot Start End Blocks Id System
/dev/sda1 3243 9728 52095960 f W95 Ext'd (LBA)
Partition 1 does not end on cylinder boundary.
/dev/sda2 * 1 2328 18698240 83 Linux
/dev/sda3 2328 2982 5248000 83 Linux
/dev/sda4 2982 3243 2097152 82 Linux swap / Solaris
/dev/sda5 3243 6485 26044168+ e W95 FAT16 (LBA)
/dev/sda6 6485 9728 26051728+ e W95 FAT16 (LBA)
Partition table entries are not in disk order
Disk /dev/sdb: 4002 MB, 4002910208 bytes
32 heads, 63 sectors/track, 3878 cylinders
Units = cylinders of 2016 * 512 = 1032192 bytes
Disk identifier: 0x3cf510aa
Device Boot Start End Blocks Id System
/dev/sdb1 * 1 3878 3908992+ b W95 FAT32
I just want to mount my
/dev/sda5 3243 6485 26044168+ e W95 FAT16 (LBA)
/dev/sda6 6485 9728 26051728+ e W95 FAT16 (LBA)
as local user plz help
- 02-09-2010 #2
you need to have root access to mount partitions. Of course , fuse will allow you to mount as local user even for that, you need to know remote-user password.
To mount,
after creating two directories sda5,sda6 under /mnt.mount /dev/sda5 /mnt/sda5
mount /dev/sda6 /mnt/sda6- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 02-09-2010 #3
- 02-09-2010 #4
It says mount point not exists , have you created two directories?
Check it using:
ls -l /mnt- Lakshmipathi.G
-------------------
FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
-------------------
- 02-09-2010 #5
Don't try to combine multiple commands, it will not always work. What your first command did was create a folder named like this:
/mnt/sda5,sda6
I am sure that this is not what you wanted, so to remove the unwanted folder, run this:
Now reenter the commands, one at a time.Code:rm -R /mnt/sda5,sda6
Code:mkdir /mnt/sda5
Also, run the mount commands one at a time. I am not sure if you can group mount commands like you did, as I don't even try. You may first need to add the partitions to your /etc/fstab file before it will be properly mounted.Code:mkdir /mnt/sda6
Paul
Please do not send Private Messages to me with requests for help. I will not reply.


Reply With Quote
