Ubuntu Pastebin

Paste from fstab editing at Wed, 2 Sep 2015 18:03:36 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
blkid output:

$ blkid
/dev/sda1: LABEL="System Reserved" UUID="4676B3FA76B3E8B7" TYPE="ntfs" 
/dev/sda2: UUID="28F4CB75F4CB4432" TYPE="ntfs" 
/dev/sda3: UUID="3e81020e-2e73-4682-9231-5a039c106cac" TYPE="ext4" 
/dev/sda5: UUID="57d4355c-5aa8-4744-9fc7-82a56a1bbf91" TYPE="swap" 
/dev/sda6: UUID="1EEC-DE01" TYPE="vfat"

fstab file:

# /etc/fstab: static file system information.
#
# Use 'blkid' 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).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sdc2 during installation
UUID=3e81020e-2e73-4682-9231-5a039c106cac /               auto    rw 		  0       1
# swap was on /dev/sdc1 during installation
UUID=57d4355c-5aa8-4744-9fc7-82a56a1bbf91 none            swap    sw              0       0

#windows
UUID=28F4CB75F4CB4432	media/windows	ntfs-3g  auto,users,uid=1000,gid=100,dmask=027,fmask=137,utf8  0  0

#data
UUID=1EEC-DE01	/mnt/data	auto 	rw	0	0
Download as text