Find the answer to your Linux question:
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 = ...
  1. #1
    ved
    ved is offline
    Linux User ved's Avatar
    Join Date
    Jan 2008
    Location
    New Delhi
    Posts
    309

    Smile 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

  2. #2
    Linux Guru Lakshmipathi's Avatar
    Join Date
    Sep 2006
    Location
    3rd rock from sun - Often seen near moon
    Posts
    1,568
    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,
    mount /dev/sda5 /mnt/sda5
    mount /dev/sda6 /mnt/sda6
    after creating two directories sda5,sda6 under /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
    -------------------

  3. #3
    ved
    ved is offline
    Linux User ved's Avatar
    Join Date
    Jan 2008
    Location
    New Delhi
    Posts
    309

    Smile

    Quote Originally Posted by Lakshmipathi View Post
    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.
    I get this

    [root@localhost ved]# cd /mnt
    [root@localhost mnt]# mkdir sda5,sda6
    [root@localhost mnt]# mount /dev/sda5 /mnt/sda5
    mount: mount point /mnt/sda5 does not exist
    [root@localhost mnt]# mount /dev/sda6 /mnt/sda6
    mount: mount point /mnt/sda6 does not exist

  4. #4
    Linux Guru Lakshmipathi's Avatar
    Join Date
    Sep 2006
    Location
    3rd rock from sun - Often seen near moon
    Posts
    1,568
    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
    -------------------

  5. #5
    Linux Guru waterhead's Avatar
    Join Date
    Jul 2004
    Location
    Franklin, Wisconsin
    Posts
    4,577
    Quote Originally Posted by ved View Post
    I get this

    [root@localhost ved]# cd /mnt
    [root@localhost mnt]# mkdir sda5,sda6
    [root@localhost mnt]# mount /dev/sda5 /mnt/sda5
    mount: mount point /mnt/sda5 does not exist
    [root@localhost mnt]# mount /dev/sda6 /mnt/sda6
    mount: mount point /mnt/sda6 does not exist
    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:
    Code:
    rm -R /mnt/sda5,sda6
    Now reenter the commands, one at a time.
    Code:
    mkdir /mnt/sda5
    Code:
    mkdir /mnt/sda6
    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.
    Paul

    Please do not send Private Messages to me with requests for help. I will not reply.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...