LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook
User Name
Password
Linux - Laptop and Netbook Having a problem installing or configuring Linux on your laptop? Need help running Linux on your netbook? This forum is for you. This forum is for any topics relating to Linux and either traditional laptops or netbooks (such as the Asus EEE PC, Everex CloudBook or MSI Wind).

Notices


Reply
  Search this Thread
Old 05-08-2010, 11:39 PM   #1
cusri2004
LQ Newbie
 
Registered: Aug 2009
Location: Wellington
Distribution: Ubuntu Lucid Lynx
Posts: 27

Rep: Reputation: 15
ntfs-3g is not ready


Hi there,

Recently I upgraded to Ubuntu 10.04 on my dual boot laptop. After the installation, every time I boot the computer I get the following message.

The disk drive for ntfs-3g is not ready yet or not present

Continue to wait; or Press S to skip mounting or M for manual recovery

What does this mean? How to solve this issue?

At the moment, I am usually pressing 's' to proceed.

Thanks in advance.
 
Old 05-09-2010, 05:22 AM   #2
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,217

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Does the UUID for the ntfs partition match what is in /etc/fstab file? To display the UUID's of your partitions, in a konsole run the command
Quote:
ls -l /dev/disk/by-uuid
This will produce a list of UUID's by partition.

Now run the command
Quote:
cat /etc/fstab
and compare the UUID's. Look for the ntfs partition. If the UUID's do not match for the ntfs partition, you can edit the fstab file as root ( sudo ) and make them match.

If everything matches, post the results here of the above commands. For reference, here is what the UUID's on my system look like.

Quote:
ls -l /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 2010-05-08 23:20 3c471dd6-ad42-4f99-9008-c89da5be2ddc -> ../../sda6
lrwxrwxrwx 1 root root 10 2010-05-08 23:20 8f1ede04-99be-4980-b6ca-8d94c1946fc4 -> ../../sda5
lrwxrwxrwx 1 root root 10 2010-05-08 23:20 cc9bc7ff-c5ee-4cf8-adff-2cab298fd0e3 -> ../../sda1
Yours will be different. One UUID is assigned for each partition.
 
Old 05-09-2010, 06:37 PM   #3
cusri2004
LQ Newbie
 
Registered: Aug 2009
Location: Wellington
Distribution: Ubuntu Lucid Lynx
Posts: 27

Original Poster
Rep: Reputation: 15
Thank you for quick response.

As I could not interpret the outcomes, I am posting the results here.

srikanth@srikanth-laptop:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# /dev/sda4
UUID=cfb54500-71d6-4d87-8f30-37f9236905b4 / ext3 relatime,errors=remount-ro 0 1
# /dev/sda3
UUID=74113376-e95e-41d7-b23b-8df838a7fc1f none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0

# Reading your Windows partition under Linux
/dev/sda1 /media/windows ntfs user,noauto 0 0
/dev/sdb2/media/disk ntfs-3g force 0 0

&

srikanth@srikanth-laptop:~$ ls -l /dev/disk/by-uuid
total 0
lrwxrwxrwx 1 root root 10 2010-05-10 09:56 61240BB302527AEF -> ../../sda1
lrwxrwxrwx 1 root root 10 2010-05-10 09:56 74113376-e95e-41d7-b23b-8df838a7fc1f -> ../../sda3
lrwxrwxrwx 1 root root 10 2010-05-10 09:56 cfb54500-71d6-4d87-8f30-37f9236905b4 -> ../../sda4
lrwxrwxrwx 1 root root 10 2010-05-10 09:56 FAFC5F30FC5EE703 -> ../../sda2
 
Old 05-10-2010, 09:14 AM   #4
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,217

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
/dev/sda1 /media/windows ntfs user,noauto 0 0
/dev/sdb2/media/disk ntfs-3g force 0 0
Which partition are you having problems with? The first line looks O.K. The second line has several problems.

There has to be a space between /dev/sdb2 and /media/disk. The 'ntfs-g3' should be 'ntfs'. Try 'user,noauto 0 0' for the rest. You have to edit this file as root. Try those changes and let me know...
 
Old 05-10-2010, 07:04 PM   #5
cusri2004
LQ Newbie
 
Registered: Aug 2009
Location: Wellington
Distribution: Ubuntu Lucid Lynx
Posts: 27

Original Poster
Rep: Reputation: 15
Commenting the last line in /etc/fstab file did the trick. I remember my laptop having problems detecting the external hard drives and I had to add that line which enabled access to them. This is not the case with Ubuntu 10.04.

Thank you for helping me out!
 
Old 05-10-2010, 10:18 PM   #6
cusri2004
LQ Newbie
 
Registered: Aug 2009
Location: Wellington
Distribution: Ubuntu Lucid Lynx
Posts: 27

Original Poster
Rep: Reputation: 15
One doubt here, the output of the two commands above, shows different partitions?

cat /etc/fstab, shows sda1,sda2,sda3 & sda4 partitions whereas

ls -l /dev/disk/by-uuid, shows sda1,sda3,sda4 & scd0.

Is there something wrong here?

Many thanks!

Last edited by cusri2004; 05-10-2010 at 10:21 PM.
 
Old 05-11-2010, 09:10 AM   #7
camorri
LQ 5k Club
 
Registered: Nov 2002
Location: Somewhere inside 9.9 million sq. km. Canada
Distribution: Slackware 15.0, current, slackware-arm-currnet
Posts: 6,217

Rep: Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849Reputation: 849
Quote:
Is there something wrong here?
No, nothing is wrong. Listing the uuid's is just that. There are different ways of identifying a partition. They can both be used. It is now recommended the UUID method is used, since it is more robust. You could move a disk in the hardware, thus changing the sda, to say, sdc, and if you were using UUID's, you would not have to modify your fstab file. If you only used sda1, 2 etc, you would have to edit the file to make the changes.
 
  


Reply



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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: KOffice 2.1 Ready for Testing, Karbon Ready for Use LXer Syndicated Linux News 0 11-26-2009 01:30 AM
Ready for Linux but is it ready for me : Time to switch? Jimbo13 Linux - Newbie 15 04-21-2008 11:08 AM
LXer: How To Enable NTFS Write Support (ntfs-3g) On Ubuntu Feisty Fawn LXer Syndicated Linux News 0 09-11-2007 08:20 PM
LXer: How To Enable NTFS Write Support (ntfs-3g) On Mandriva 2007 Spring LXer Syndicated Linux News 0 09-05-2007 05:30 PM
"NOT READY!" Help me make it ready! :P Kheldon Linux - Wireless Networking 2 09-04-2005 05:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Laptop and Netbook

All times are GMT -5. The time now is 10:09 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration