| Forum |
|
|||||||
| 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. |
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|
#1 (permalink) |
|
Wise Old Owl
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
|
Code:
apt-get install ntfs-config 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. btw back again on ubuntu Regards
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/ |
|
|
| Advertisements. Register and be a member of the community to get rid of them. | |
|
Advertisement
|
|
|
|
#2 (permalink) |
|
Commander in Chief
Join Date: Jul 2005
Posts: 6,657
|
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 Code:
/dev/hda1 /mnt/windows ntfs-3g users,auto,uid=1000,gid=100,umask=007,force 0 0
__________________
Harsh J www.harshj.com Last edited by QwertyManiac; 15-09-2007 at 07:09 PM. Reason: Automerged Doublepost |
|
|
|
|
#3 (permalink) |
|
Wise Old Owl
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
|
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
__________________
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 |
|
|
|
|
#4 (permalink) |
|
Commander in Chief
Join Date: Jul 2005
Posts: 6,657
|
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 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
__________________
Harsh J www.harshj.com Last edited by QwertyManiac; 15-09-2007 at 08:19 PM. |
|
|
|
|
#5 (permalink) |
|
Wise Old Owl
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
|
Thanks that did worked
__________________
Me Myself and My Tux Blog :- http://tuxenclave.wordpress.com/ |
|
|
|
|
#7 (permalink) | |
|
"The Gentleman"
Join Date: Sep 2006
Posts: 1,434
|
offtopic:
Quote:
wats ur system config ?
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense." - Dijkstra |
|
|
|
|
|
#8 (permalink) |
|
18 Till I Die............
Join Date: Jul 2004
Location: India, Mumbai, Marine Lines
Posts: 5,792
|
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 |
|
|
|
|
#9 (permalink) |
|
Commander in Chief
Join Date: Jul 2005
Posts: 6,657
|
@mehulved - That force fixes it up, the ntfsfix fixes it in a more legit way
@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 |
|
|
|
|
#10 (permalink) | |
|
"The Gentleman"
Join Date: Sep 2006
Posts: 1,434
|
Quote:
__________________
"The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offense." - Dijkstra |
|
|
|
|
|
#11 (permalink) | ||
|
Wise Old Owl
Join Date: Feb 2006
Location: /dev/hd0
Posts: 1,487
|
Well again a problem
Code:
You are not privileged to unmount this volume. btw am also upgrading adding 1Gig to old 256 and Intel C2D + new mb +gpu later Quote:
Quote:
Code:
sudo apt-get install ntfsprogs 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 |
||
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
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 |