Find the answer to your Linux question:
Page 2 of 3 FirstFirst 1 2 3 LastLast
Results 11 to 20 of 21
Originally Posted by binarydumb Okay, here's what I got: Did you write fdisk -l (<- this is an L) or did you write fdisk -1 (<- this is a one)? ...
  1. #11
    Just Joined! Dpontes11's Avatar
    Join Date
    Nov 2005
    Location
    Gondomar, Portugal
    Posts
    68


    Quote Originally Posted by binarydumb
    Okay, here's what I got:

    Did you write fdisk -l (<- this is an L) or did you write fdisk -1 (<- this is a one)?

    You probably got that error message because of this simple (and common) mistake...

  2. #12
    Just Joined!
    Join Date
    May 2005
    Posts
    18
    Quote Originally Posted by Dpontes11
    Did you write fdisk -l (<- this is an L) or did you write fdisk -1 (<- this is a one)?

    You probably got that error message because of this simple (and common) mistake...
    It was 'fdisk -1' as in one, the number. Was it supposed to be an 'L'?

  3. #13
    Just Joined!
    Join Date
    May 2005
    Posts
    18

    fdisk -l output

    Okay, here is the 'fdisk -l' output on my pc:



    So, the questions remains: how do I make a mount point? Do I just right click on my desktop and make an icon? BTW, I do want to make a mount point for my 'dev/hda4' as well.

    Thanks again, folks.

  4. #14
    Just Joined!
    Join Date
    Dec 2006
    Location
    Vijayawada,INDIA
    Posts
    56
    creating a mount point is just creating a direcotry in /mnt..
    you can do that with
    nkdir command
    Code:
    mkdir directory-name (/mnt/'your-required-directory-name')

  5. #15
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,308
    for mounting partitions from terminal, create mount point as suggested by sasidhar.
    Code:
    su -
    mkdir  /media/first
    mount -t  <file system>  /dev/<partition>  /media/first
    /media/first is a mount point. replace <file system> with ntfs for NTFS partition and for FAT32, its vfat.





    Casper
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  6. #16
    Just Joined!
    Join Date
    May 2005
    Posts
    18

    closer...but still no cgiar :-)

    Okay.

    I changed the ownership by:
    Look for your device. On mine it is about halfway amoungst the USB Devices. Look for the Volume Label you used when you formatted the drive in Windows. Once you find it, select it then select the Advanced tab look for the device node.

    For example, mine is /dev/sdi1.

    As root Create a mount point like /mnt/usbhdd1 and check your permissions.

    chown username:group /mnt/usbhdd1
    chmod 775 /mnt/usbhdd1

    Then use ntfs-3g to mout your drive.

    ntfs-3g /dev/sdi1 /mnt/usbhdd1
    Still I get this:


    Did I do something wrong?

    Thanks in advance all.

  7. #17
    Linux Guru Juan Pablo's Avatar
    Join Date
    Mar 2006
    Location
    /home/south_america/ecuador/quito
    Posts
    2,064
    You need to be root "su -" to mount something
    Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
    Linux User #425940

    Don't PM me with questions, instead post in the forums

  8. #18
    Just Joined!
    Join Date
    May 2005
    Posts
    18

    Yipeee !!!

    Success!

    Thank you for all the help. Now the challenge is: how do I make it an 'automatic-mount' whenever I log in as me?


  9. #19
    Linux Guru Juan Pablo's Avatar
    Join Date
    Mar 2006
    Location
    /home/south_america/ecuador/quito
    Posts
    2,064
    You need to add an entry in /etc/fstab

    Try this as root (su -)
    Code:
    mount -t ntfs-3g /dev/sda1 /mnt/usb-hdd
    if it worked type this as root
    Code:
    echo /dev/sda1 /mnt/usb-hdd ntfs-3g defaults 0 0 >> /etc/fstab
    Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
    Linux User #425940

    Don't PM me with questions, instead post in the forums

  10. #20
    Just Joined!
    Join Date
    May 2005
    Posts
    18

    Jubilation

    Yipee !!

    It works. Thank you all for the help. Now to further my experience with Fedora Core 6.

Page 2 of 3 FirstFirst 1 2 3 LastLast

Posting Permissions

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