Forum     

Go Back   Digit Technology Discussion Forum > Software > Open Source
Register FAQ Calendar Mark Forums Read

Open Source A place where you can talk to like-minded people about the fastest growing software movement today! Discuss anything and everything about Open Source software and Operating Systems.

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 10-05-2007, 10:30 PM   #1 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post mounting sata drive & pen drive

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}
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 10-05-2007, 11:06 PM   #2 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: mounting sata drive & pen drive

Is this a tut?

Do this .. [Ubuntu]

Code:
sudo apt-get install ntfs-config
Then enable mounting of external with write support via the app .. That's it.
__________________
Harsh J
www.harshj.com

Last edited by QwertyManiac; 10-05-2007 at 11:23 PM.
QwertyManiac is offline  
Old 10-05-2007, 11:15 PM   #3 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: mounting sata drive & pen drive

Quote:
Originally Posted by QwertyManiac
Is this a tut?

Do this ..

Code:
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
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 10-05-2007, 11:25 PM   #4 (permalink)
In Pursuit of "Happyness"
 
kalpik's Avatar
 
Join Date: May 2005
Location: New Delhi
Posts: 3,404
Default Re: mounting sata drive & pen drive

sudo allows you to become the root user temporarily.. And do what Qwerty suggested, easiest way to get ntfs write support..
__________________
Whenever you find yourself on the side of the majority, it is time to pause and reflect. - Mark Twain
kalpik is offline  
Old 10-05-2007, 11:38 PM   #5 (permalink)
1337 |)00|) \m/
 
kaustav_geek's Avatar
 
Join Date: Nov 2005
Location: Cyber Space
Posts: 472
Default Re: mounting sata drive & pen drive

Quote:
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 ?
__________________
My Blog : www.vatsuak.blogspot.com
My DA page : www.burningsilver.deviantart.com

OK..ok..... Ads are bad..
kaustav_geek is offline  
Old 10-05-2007, 11:59 PM   #6 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: mounting sata drive & pen drive

so u mean to say tat sata drive will be mounted in writable mode????
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 11-05-2007, 10:32 AM   #7 (permalink)
GaurishSharma.com
 
gary4gar's Avatar
 
Join Date: May 2005
Location: Jaipur
Posts: 4,097
Default Re: mounting sata drive & pen drive

Quote:
Originally Posted by vish786
so u mean to say tat sata drive will be mounted in writable mode????
i think he said so
gary4gar is offline  
Old 11-05-2007, 02:52 PM   #8 (permalink)
Burning Bright
 
anantkhaitan's Avatar
 
Join Date: May 2006
Location: NIT, Bhopal
Posts: 266
Thumbs up Re: mounting sata drive & pen drive

Quote:
Originally Posted by vish786
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:
Quote:
$ sudo gedit /etc/fstab
Append this as root to ur fstab file:

if media has FAT32 partition :
Quote:
/dev/<drive> /media/<mount point> vfat users,rw,umask=000 0 0
if NTFS then :
Quote:
/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 :
Quote:
$ sudo mount /dev/hda2 /media/documents
__________________
..::Fedora ::.. Freedom + Infinity + Speech
Registered Linux User #447318

GNUger was here.... Grrr....

Maah! Blog
http://brightedges.blogspot.com/
anantkhaitan is offline  
Old 11-05-2007, 03:21 PM   #9 (permalink)
Debian Rocks!
 
freebird's Avatar
 
Join Date: Feb 2007
Location: Coimbattore
Posts: 528
Default Re: mounting sata drive & pen drive

writing in ntfs also possible now.check ntfs-3g
http://www.ntfs-3g.org/
http://linux-ntfs.org/
__________________
"The day windows users wake up to reality, it will be doomsday for Microsoft."UNIX like OS are more secure.get urself out 4m M$ http://whylinuxisbetter.net http://tinyurl.com/2amjjc http://fsf.org
freebird is offline  
Old 11-05-2007, 07:14 PM   #10 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: mounting sata drive & pen drive

Quote:
Originally Posted by anantkhaitan
Writable only for root
It enables for all users ..
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
SATA ROCKS : Fujitsu intros first 2.5" 7200 rpm hard drive with SATA 2.5 interface techtronic Technology News 7 22-03-2009 11:09 PM
Can I attach a new sata drive to my existing Seagate 80GB SATA HDD? praka123 Hardware Q&A 6 04-02-2007 06:28 PM
BEST SATA DRIVE Prajith QnA (read only) 4 08-07-2005 11:44 AM
Problem wth SATA drive. imported_tabrez QnA (read only) 4 12-06-2005 12:58 AM


All times are GMT +5.5. The time now is 02:49 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2