I have a backup disk NTFS formatted for backup of data from my windows machines. Now I need a pice from this disk for Linux. I have no idea how to do this and with witch software. Gparted within Kubuntu has no power over this disk.
Announcement
Collapse
No announcement yet.
How to format an NTSF disk partially for Linux
Collapse
This topic is closed.
X
X
-
Re: How to format an NTSF disk partially for Linux
As the above post, if you want to see NTFS from Linux install the application: ntfs-3g"A problem well stated is a problem half solved." --Charles F. Kettering
"Sometimes the questions are complicated and the answers are simple."--Dr. Seuss
- Top
- Bottom
-
Re: How to format an NTSF disk partially for Linux
You need to create a mount point for the drive, such as
Code:sudo mkdir /media/vista
Code:sudo mount -t ntfs -o rw,umask=000 /dev/sdb3 /media/vista
We only have to look at ourselves to see how intelligent life might develop into something we wouldn't want to meet. -- Stephen Hawking
- Top
- Bottom
Comment
-
Re: How to format an NTSF disk partially for Linux
Originally posted by doctordruidphdYou need to create a mount point for the drive, such as
Code:sudo mkdir /media/vista
Code:sudo mount -t ntfs -o rw,umask=000 /dev/sdb3 /media/vista
Code:sudo mount -t ntfs -o rw,umask=000 /dev/media/MyBook250Gb /media/vista
Linux beautiful to watch!<br />Kubuntu 10.4 with Canon MX310 in Samba network with Windows XP & 7
- Top
- Bottom
Comment
-
Re: How to format an NTSF disk partially for Linux
tried this but nothing...
Did you create the /media/vista directory? What do you see if you type
Code:ls /media/vista
We only have to look at ourselves to see how intelligent life might develop into something we wouldn't want to meet. -- Stephen Hawking
- Top
- Bottom
Comment
Comment