2009년 12월 31일 목요일

Mount Example

# /etc/fstab: static file system information.
#
# Use 'vol_id --uuid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
#
proc /proc proc defaults 0 0
# / was on /dev/sda1 during installation
UUID=a3ea494a-508e-46ef-b7ed-229ea5a2b6ee / ext3 relatime,errors=remount-ro 0 1
# /home was on /dev/sdb1 during installation
UUID=cc4e6b59-bd61-4b33-b2d6-b5504cad0afa /home ext3 relatime 0 2
# swap was on /dev/sda5 during installation
UUID=fe5164e0-dea3-4b5d-aeb4-0aa8a7b03a59 none swap sw 0 0
/dev/scd0 /media/cdrom0 udf,iso9660 user,noauto,exec,utf8 0 0
# This is 750G partition of one terabyte hitachi hard drive.
UUID=21E53765421D089F /home/userid/Archives ntfs-3g exec,rw,dev,suid,async,utf8,uid=1000,gid=1000,umask=022 0 0



*How to Check UUID.

ls -l /dev/disk/by-uuid/

Or

blkid /dev/sda3 //number is depends on hard disk.



Use mount command in a terminal

mount /dev/sda3 /home/gray/Archives -t ntfs-3g -o exec,rw,dev,suid,async,utf8,uid=1000,gid=1000,umask=022

댓글 없음:

sublime close without confirmation

  Close without confirm   Yes, you can just write a plugin to set the view as scratch and close it. Then create a keybinding for that c...