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 15-09-2007, 06:45 PM   #1 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default NTFS write error!

I installed ntfs-config
Code:
apt-get install ntfs-config
Now after using this I got this errorr

Code:
Mounting /media/sda1 failed.

$LogFile indicates unclean shutdown (0, 1)
Failed to mount '/dev/disk/by-uuid/C4445B1A445B0F14': Operation not supported
Mount is denied because NTFS logfile is unclean. Choose one action:
   Boot Windows and shutdown it cleanly, or if you have a removable
   device then click the 'Safely Remove Hardware' icon in the Windows
   taskbar notification area before disconnecting it.
Or
   Run ntfsfix version 1.13.1 on Linux unless you have Vista.
Or
   Mount the NTFS volume with the 'ro' option in read-only mode.
I have no other OS than Ubuntu what to do ?

btw back again on ubuntu

Regards
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 15-09-2007, 07:09 PM   #2 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: NTFS write error!

Oh this is simple.

Go back to Windows, Shut Down properly (Don't Restart or Hibernate etc, only Shut Down) and then Launch Ubuntu. It'll be fixed. Its a security/safety issue related to NTFS

Oops, no other OS right? Um, wait...

So yeah, add the force option to the FSTAB (sudo gedit /etc/fstab)

So in the line that looks like:
Code:
/dev/hda1 /mnt/windows ntfs-3g users,auto,uid=1000,gid=100,umask=007 0 0
Make it look like:
Code:
/dev/hda1 /mnt/windows ntfs-3g users,auto,uid=1000,gid=100,umask=007,force 0 0
What I mean is, just add the force command and then reboot.
__________________
Harsh J
www.harshj.com

Last edited by QwertyManiac; 15-09-2007 at 07:09 PM. Reason: Automerged Doublepost
QwertyManiac is offline  
Old 15-09-2007, 07:17 PM   #3 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: NTFS write error!

Also in my grub boot loader Windows is appearing well I had removed it how to remove from grubmenu.lst

Code:
# /etc/fstab: static file system information.
#
#  -- This file has been automaticly generated by ntfs-config -- 
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

proc /proc proc defaults 0 0
# Entry for /dev/sda7 :
UUID=a92e4b73-b613-4607-bf76-9b2177983e24 / ext2 defaults,errors=remount-ro 0 1
# Entry for /dev/sda1 :
UUID=C4445B1A445B0F14 /media/sda1 ntfs umask=222,utf8 0 1
# Entry for /dev/sda3 :
UUID=A0FCAA1BFCA9EC2A /media/sda3 ntfs umask=222,utf8 0 1
# Entry for /dev/sda5 :
UUID=705E-3011 /media/sda5 vfat defaults,utf8,umask=007,gid=46 0 1
# Entry for /dev/sda6 :
UUID=536403c8-bb5e-4c58-94ec-532646c2424b none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
I cannot find any line similar to that
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/

Last edited by Dark Star; 15-09-2007 at 07:17 PM. Reason: Automerged Doublepost
Dark Star is offline  
Old 15-09-2007, 08:03 PM   #4 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: NTFS write error!

Aw man .. its right in the middle of the file!

Code:
# /etc/fstab: static file system information.
#
#  -- This file has been automaticly generated by ntfs-config -- 
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

proc /proc proc defaults 0 0
# Entry for /dev/sda7 :
UUID=a92e4b73-b613-4607-bf76-9b2177983e24 / ext2 defaults,errors=remount-ro 0 1
# Entry for /dev/sda1 :
UUID=C4445B1A445B0F14 /media/sda1 ntfs umask=222,utf8,force 0 1
# Entry for /dev/sda3 :
UUID=A0FCAA1BFCA9EC2A /media/sda3 ntfs umask=222,utf8,force 0 1
# Entry for /dev/sda5 :
UUID=705E-3011 /media/sda5 vfat defaults,utf8,umask=007,gid=46 0 1
# Entry for /dev/sda6 :
UUID=536403c8-bb5e-4c58-94ec-532646c2424b none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Add the bold as shown.

But I wonder why it is ntfs and not ntfs-3g ... Wait I'll have to boot back to Ubuntu and check if its really gone. (Was playing Halo 2 )

Edit:
Ok, so if you are very sure you have installed ntfs-config and have ticked the appropriate options under Applications > System Tools > NTFS Configuration Tool, then change all occurances of ntfs to ntfs-3g in your fstab. Thus your final fstab will look like:


Code:
# /etc/fstab: static file system information.
#
#  -- This file has been automaticly generated by ntfs-config -- 
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>

proc /proc proc defaults 0 0
# Entry for /dev/sda7 :
UUID=a92e4b73-b613-4607-bf76-9b2177983e24 / ext2 defaults,errors=remount-ro 0 1
# Entry for /dev/sda1 :
UUID=C4445B1A445B0F14 /media/sda1 ntfs-3g umask=222,utf8,force 0 1
# Entry for /dev/sda3 :
UUID=A0FCAA1BFCA9EC2A /media/sda3 ntfs-3g umask=222,utf8,force 0 1
# Entry for /dev/sda5 :
UUID=705E-3011 /media/sda5 vfat defaults,utf8,umask=007,gid=46 0 1
# Entry for /dev/sda6 :
UUID=536403c8-bb5e-4c58-94ec-532646c2424b none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/fd0 /media/floppy0 auto rw,user,noauto 0 0
Changes indicated in bold.
__________________
Harsh J
www.harshj.com

Last edited by QwertyManiac; 15-09-2007 at 08:19 PM.
QwertyManiac is offline  
Old 15-09-2007, 08:55 PM   #5 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: NTFS write error!

Thanks that did worked btw I formatted 1 drive after installin Ubuntu and opened NTFS config.. it told me put a letter I typed 3 and now the name of the HDD is coming 3 how can I change the name of the hard disk permanently
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/
Dark Star is offline  
Old 15-09-2007, 09:16 PM   #6 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: NTFS write error!

I don't know how to change the Volume ID via Linux, sorry, wait for someone else
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Old 15-09-2007, 09:38 PM   #7 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: NTFS write error!

offtopic:
Quote:
Originally Posted by QwertyManiac
Wait I'll have to boot back to Ubuntu and check if its really gone. (Was playing Halo 2 )
Halo 2.... hmm
wats ur system config ?
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 15-09-2007, 09:49 PM   #8 (permalink)
18 Till I Die............
 
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
Default Re: NTFS write error!

Why NTFS if you don't have windows?
Did you try ntfsfix as listed in the solutions in your first post?
__________________
http://www.bash.org/?258908
mehulved is offline  
Old 15-09-2007, 10:07 PM   #9 (permalink)
Commander in Chief
 
QwertyManiac's Avatar
 
Join Date: Jul 2005
Posts: 6,657
Default Re: NTFS write error!

@mehulved - That force fixes it up, the ntfsfix fixes it in a more legit way Anyway his problem seems to be solved ..

@Shashwat Pant - You can remove it via (sudo gedit /boot/grub/menu.lst). The Windows entry will be the last, just remove the entire chunk.

@vish786 - 3.0 GHz HT Prescott P4 ( 478 ) + 7600 GT 8x + 1024 MB RAM
__________________
Harsh J
www.harshj.com
QwertyManiac is offline  
Old 15-09-2007, 10:57 PM   #10 (permalink)
"The Gentleman"
 
vish786's Avatar
 
Join Date: Sep 2006
Posts: 1,434
Post Re: NTFS write error!

Quote:
Originally Posted by QwertyManiac
@vish786 - 3.0 GHz HT Prescott P4 ( 478 ) + 7600 GT 8x + 1024 MB RAM
is 7600 GT agp card ?
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense."
- Dijkstra
vish786 is offline  
Old 16-09-2007, 10:43 AM   #11 (permalink)
Wise Old Owl
 
Dark Star's Avatar
 
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
Default Re: NTFS write error!

Well again a problem .. I copy the files close the windows .. open again and everything blank. Now I have to right click the drive select Ubmount Vol.
Code:
You are not privileged to unmount this volume.
For an instance files copied appear .. after closing dissappear and had to follow same step :X
btw am also upgrading adding 1Gig to old 256 and Intel C2D + new mb +gpu later +320 gigs storage :d

Quote:
Originally Posted by vish786
is 7600 GT agp card ?
Yes.. Socket 478 did not have PCI-e X16 slot

Quote:
Originally Posted by mehulved
Why NTFS if you don't have windows?
Did you try ntfsfix as listed in the solutions in your first post?
Install that by
Code:
sudo apt-get install ntfsprogs
donno where it is located plz throw some light on it btw will re-install maybe when DVD d/l get finished btw what other utils DVD ISO provide

bumpity bump
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/

Last edited by Dark Star; 16-09-2007 at 10:43 AM. Reason: Automerged Doublepost
Dark Star 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
monitor resolution, totem HW acc, and NTFS read/write blackleopard92 Open Source 12 11-06-2007 09:41 AM
ntfs read / write in dos ashfame QnA (read only) 4 29-05-2007 04:29 PM
Mount NTFS partions as read/write gary4gar Open Source 5 26-07-2006 09:18 AM
Write in Ntfs............ khattam_ QnA (read only) 1 22-04-2005 11:18 AM


All times are GMT +5.5. The time now is 10:28 PM.


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

Search Engine Optimization by vBSEO 3.3.2