View Full Version : mounting sata drive & pen drive
vish786
10-05-2007, 10:30 PM
does anyone know how to mount sata hdd which is in NTFS format tat too in WRITEABLE mode so tat file can be transferred from c drive to other logical drive....
How to mount an USB Pen Drive
Attach your USB pendrive to Linux computer.
#dmesg
{Check the last lines. It will show the device name used by pendrive for example
/dev/sda1 or /dev/sdb1)
#mkdir /pendrive
#mount /dev/sdb1 /pendrive
How to unmount & remove an USB Pen Drive/Hard
Disk from Linux System?
#unmount /pendrive
# eject /dev/sdb1
à {Pendrive will stop blinking. Now
remove it}
QwertyManiac
10-05-2007, 11:06 PM
Is this a tut?
Do this .. [Ubuntu]
sudo apt-get install ntfs-config Then enable mounting of external with write support via the app .. That's it.
vish786
10-05-2007, 11:15 PM
Is this a tut?
Do this ..
sudo apt-get install ntfs-config Then enable mounting of external with write support via the app .. That's it.
its both a tutorial with a question :)
wat is sudo???? till now i hav been using mount command for mounting file systems will it work in all the linux OS like mandriva, fedora core, suse, knoppix , mostly famous ones..... and i hav a internal sata hdd not an external
kalpik
10-05-2007, 11:25 PM
sudo allows you to become the root user temporarily.. And do what Qwerty suggested, easiest way to get ntfs write support..
kaustav_geek
10-05-2007, 11:38 PM
sudo allows you to become the root user temporarily.. And do what Qwerty suggested, easiest way to get ntfs write support..
Sudo actually gives you root privileges but doesn't in fact make you the root.. I guess thats what Sudo is all about nuh ?
vish786
10-05-2007, 11:59 PM
so u mean to say tat sata drive will be mounted in writable mode????
gary4gar
11-05-2007, 10:32 AM
so u mean to say tat sata drive will be mounted in writable mode????
i think he said so:)
anantkhaitan
11-05-2007, 02:52 PM
so u mean to say tat sata drive will be mounted in writable mode????
Writable only for root :)
As far as 'accessing ur media' is concerned best way is to edit ur 'fstab' file:
$ sudo gedit /etc/fstab
Append this as root to ur fstab file:
if media has FAT32 partition :
/dev/<drive> /media/<mount point> vfat users,rw,umask=000 0 0
if NTFS then :
/dev/<drive> /media/<mount point> ntfs ro 0 0
U must be knowing about 'su', but 'sudo' unlike su gives U root privilege only for one execution and U r a normal user again and avoiding possible accidents which u may cause if ur a root ;)
Example : $ sudo mount /dev/hda2 /media/documents
freebird
11-05-2007, 03:21 PM
writing in ntfs also possible now.check ntfs-3g
http://www.ntfs-3g.org/
http://linux-ntfs.org/
QwertyManiac
11-05-2007, 07:14 PM
Writable only for root
It enables for all users .. :)
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.