Created
August 12, 2013 16:20
-
-
Save jansanchez/6212444 to your computer and use it in GitHub Desktop.
/etc/fstab - mount
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# discs list | |
fdisk -l | |
# mount | |
mount /dev/sda2 /media/WIN7/ -t ntfs -o nls=utf8,umask=0222 | |
# /etc/fstab: static file system information. | |
# | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
#Entry for /dev/sda3 : | |
UUID=6390c946-04f2-4cd0-a2e6-5513af6440c1 / ext4 errors=remount-ro 0 1 | |
#Entry for /dev/sda1 : | |
UUID=B2D4BD66D4BD2D8B /media/Reservado\040para\040el\040sistema ntfs-3g defaults,nosuid,nodev,locale=en_US.UTF-8 0 0 | |
#Entry for /dev/sda2 : | |
UUID=4852EB6652EB576A /media/WIN7 ntfs-3g defaults,locale=en_US.UTF-8 0 0 | |
#Entry for /dev/sda5 : | |
UUID=d6e27f2b-9fb3-4278-8ff7-70c4ccef2695 none swap sw 0 0 | |
/dev/sr0 /media/cdrom0 udf,iso9660 user,noauto 0 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment