Find the answer to your Linux question:
Page 1 of 3 1 2 3 LastLast
Results 1 to 10 of 25
i just got a maxtor personal storage 3200 external hard drive.. but when i go to the "storage media" area it wont let me add anything to it and the ...
  1. #1
    Just Joined!
    Join Date
    Oct 2006
    Posts
    27

    external hard drive

    i just got a maxtor personal storage 3200 external hard drive.. but when i go to the "storage media" area it wont let me add anything to it and the permissions say it is set to "can view only" and will not let me change the permissions.... can someone tell me what i need to do?


    Could not change permissions for /media/sdb1.

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    set value of umask to zero for universal read/write access.
    Code:
    mount -t <filesystem>    <partition>  <mount_point>  -o defaults,umask=0
    Linux doesn't support NTFS write access out of box. install ntfs-3g package to enable NTFS write access.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Oct 2006
    Posts
    27
    bash: syntax error near unexpected token `<'



    it says this when i put in what you said

  4. #4
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    type actual filesystem of external herddisk's partition.
    e.g.
    partition name, /dev/sda1
    mount_point, /media/first
    filesystem ntfs for NTFS and vfat for FAT32.

    correct code for My Partitions is
    Code:
    mount -t vfat  /dev/sda1   /media/first  -o defaults,umask=0
    post the output of fdisk -l command here.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  5. #5
    Just Joined!
    Join Date
    Oct 2006
    Posts
    27
    mount: mount point /media/first does not exist


    I know I must be annoying but it says this

  6. #6
    Linux Guru Juan Pablo's Avatar
    Join Date
    Mar 2006
    Location
    /home/south_america/ecuador/quito
    Posts
    2,064
    mkdir /media/first
    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

  7. #7
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    that was an example only. post the output of fdisk -l command.
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  8. #8
    Just Joined!
    Join Date
    Oct 2006
    Posts
    27
    Disk /dev/sdb: 160.0 GB, 160041885696 bytes
    255 heads, 63 sectors/track, 19457 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes

    Device Boot Start End Blocks Id System
    /dev/sdb1 * 1 19457 156288321 7 HPFS/NTFS

  9. #9
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    execute this
    Code:
    mkdir /media/first
    mount -t ntfs /dev/sdb1  /media/first  -o defaults,umask=0
    External disk has NTFS filesystem and as i mentioned earlier, you will have read access only. you can install ntfs-eg package for NTFS write access.
    which distro do you have?
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  10. #10
    Just Joined!
    Join Date
    Oct 2006
    Posts
    27
    i Downloaded NTFS and used the instructions from this site

    http://www.ubuntuforums.org/showthread.php?t=217009

    it know says:

    daniel@daniel-laptop:~$ sudo mount -t ntfs /dev/sdb1 /media/first -o defaults,umask=0
    mount: /dev/sdb1 already mounted or /media/first busy
    mount: according to mtab, /dev/sdb1 is mounted on /media/sdb1

Page 1 of 3 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
  •  
...