Advertisement
Guest User

ntfs

a guest
Nov 5th, 2013
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. ubuntu@ubuntu:~$ sudo mount -o /dev/sda3 /media/ubuntu/Données/
  2. mount: can't find /media/ubuntu/Données/ in /etc/fstab or /etc/mtab
  3. ubuntu@ubuntu:~$ sudo mount -o -ro /dev/sda3 /media/ubuntu/Données
  4. The disk contains an unclean file system (0, 0).
  5. Metadata kept in Windows cache, refused to mount.
  6. Failed to mount '/dev/sda3': Operation not permitted
  7. The NTFS partition is in an unsafe state. Please resume and shutdown
  8. Windows fully (no hibernation or fast restarting), or mount the volume
  9. read-only with the 'ro' mount option.
  10. ubuntu@ubuntu:~$ sudo mount -ro /dev/sda3
  11. Usage: mount -V : print version
  12. mount -h : print this help
  13. mount : list mounted filesystems
  14. mount -l : idem, including volume labels
  15. So far the informational part. Next the mounting.
  16. The command is `mount [-t fstype] something somewhere'.
  17. Details found in /etc/fstab may be omitted.
  18. mount -a [-t|-O] ... : mount all stuff from /etc/fstab
  19. mount device : mount device at the known place
  20. mount directory : mount known device here
  21. mount -t type dev dir : ordinary mount command
  22. Note that one does not really mount a device, one mounts
  23. a filesystem (of the given type) found on the device.
  24. One can also mount an already visible directory tree elsewhere:
  25. mount --bind olddir newdir
  26. or move a subtree:
  27. mount --move olddir newdir
  28. One can change the type of mount containing the directory dir:
  29. mount --make-shared dir
  30. mount --make-slave dir
  31. mount --make-private dir
  32. mount --make-unbindable dir
  33. One can change the type of all the mounts in a mount subtree
  34. containing the directory dir:
  35. mount --make-rshared dir
  36. mount --make-rslave dir
  37. mount --make-rprivate dir
  38. mount --make-runbindable dir
  39. A device can be given by name, say /dev/hda1 or /dev/cdrom,
  40. or by label, using -L label or by uuid, using -U uuid .
  41. Other options: [-nfFrsvw] [-o options] [-p passwdfd].
  42. For many more details, say man 8 mount .
  43. ubuntu@ubuntu:~$ sudo mount -ro /dev/sda3 /media/ubuntu/Données
  44. mount: can't find /media/ubuntu/Données in /etc/fstab or /etc/mtab
  45. ubuntu@ubuntu:~$ sudo mount -ro /dev/sda3 /media/Ubuntu
  46. mount: can't find /media/Ubuntu in /etc/fstab or /etc/mtab
  47. ubuntu@ubuntu:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement