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 ...
- 03-07-2007 #1Just 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.
- 03-07-2007 #2
set value of umask to zero for universal read/write access.
Linux doesn't support NTFS write access out of box. install ntfs-3g package to enable NTFS write access.Code:mount -t <filesystem> <partition> <mount_point> -o defaults,umask=0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-07-2007 #3Just Joined!
- Join Date
- Oct 2006
- Posts
- 27
bash: syntax error near unexpected token `<'
it says this when i put in what you said
- 03-07-2007 #4
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
post the output of fdisk -l command here.Code:mount -t vfat /dev/sda1 /media/first -o defaults,umask=0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-07-2007 #5Just 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
- 03-07-2007 #6
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
- 03-07-2007 #7
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
- 03-07-2007 #8Just 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
- 03-07-2007 #9
execute this
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.Code:mkdir /media/first mount -t ntfs /dev/sdb1 /media/first -o defaults,umask=0
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
- 03-07-2007 #10Just 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


Reply With Quote