author | Oleksandr Gavenko <gavenkoa@gmail.com> |
Sat, 14 Jul 2012 00:00:05 +0300 | |
changeset 1341 | e45ca3c87690 |
parent 1334 | 9bf0d5a1f0cf |
child 1346 | a2fbf50a43f4 |
permissions | -rw-r--r-- |
1334
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1195
diff
changeset
|
1 |
.. -*- coding: utf-8; -*- |
9bf0d5a1f0cf
Include common header with quick links.
Oleksandr Gavenko <gavenkoa@gmail.com>
parents:
1195
diff
changeset
|
2 |
.. include:: HEADER.rst |
1195 | 3 |
|
4 |
============== |
|
5 |
File system. |
|
6 |
============== |
|
7 |
||
8 |
Make label on FAT32 volume. |
|
9 |
=========================== |
|
10 |
||
11 |
The volume name can be up to 11 characters long:: |
|
12 |
||
13 |
$ sudo mlabel -i /dev/<device> ::my-label |
|
14 |
||
15 |
or when create FAT32 file system:: |
|
16 |
||
17 |
$ sudo mkdosfs -n <vol-name> /dev/<device> |
|
18 |
||
19 |
Convert file name coding. |
|
20 |
========================= |
|
21 |
:: |
|
22 |
||
23 |
$ convmv --nosmart -f cp-1251 -t utf-8 -r $dir |
|
24 |
||
25 |
How get file time attributes. |
|
26 |
============================= |
|
27 |
||
28 |
POSIX define 3 file time attributes: atime (access time, only a few OS/fs update |
|
29 |
this parameter), ctime (attribute/inode modification time), mtime (modification |
|
30 |
time). |
|
31 |
||
32 |
To get time you can use 'ls' command but it print time in locale dependent |
|
33 |
irregular form:: |
|
34 |
||
35 |
$ ls -l file.txt # last file modification |
|
36 |
$ ls -lc file.txt # last file status modification |
|
37 |
$ ls -lu file.txt # last access |
|
38 |
||
39 |
GNU coreutils provide more robust 'stst' utility:: |
|
40 |
||
41 |
$ stat -c %Y file.txt # last file modification |
|
42 |
$ stat -c %Z file.txt # last file status modification |
|
43 |
$ stat -c %X file.txt # last access |
|
44 |
||
45 |
POSIX file name restriction. |
|
46 |
============================ |
|
47 |
||
48 |
Windows file name restriction. |
|
49 |
============================== |
|
50 |
||
51 |
http://msdn.microsoft.com/en-us/library/aa365247.aspx |
|
52 |
Naming Files, Paths, and Namespaces |
|
53 |
||
54 |
How get UUID and label? |
|
55 |
======================= |
|
56 |
||
57 |
Include UUID (Universally Unique Identifier) and labels:: |
|
58 |
||
59 |
$ ls -l /dev/disk/by-uuid/ |
|
60 |
lrwxrwxrwx 1 root root 10 2010-11-01 23:41 46B6-1FD4 -> ../../sdb2 |
|
61 |
lrwxrwxrwx 1 root root 10 2010-11-01 23:41 4C30299030298256 -> ../../sda1 |
|
62 |
||
63 |
$ ls -l /dev/disk/by-label/ |
|
64 |
lrwxrwxrwx 1 root root 10 2010-11-01 23:41 bin -> ../../sda3 |
|
65 |
lrwxrwxrwx 1 root root 10 2010-11-01 23:41 inst -> ../../sda2 |
|
66 |
lrwxrwxrwx 1 root root 10 2010-11-01 23:41 media -> ../../sdc5 |
|
67 |
||
68 |
$ sudo vol_id /dev/dm-2 |
|
69 |
ID_FS_USAGE=filesystem |
|
70 |
ID_FS_TYPE=ext3 |
|
71 |
ID_FS_VERSION=1.0 |
|
72 |
ID_FS_UUID=f7484fc9-75ec-4e46-8539-50b1e371b7ef |
|
73 |
ID_FS_UUID_ENC=f7484fc9-75ec-4e46-8539-50b1e371b7ef |
|
74 |
ID_FS_LABEL= |
|
75 |
ID_FS_LABEL_ENC= |
|
76 |
ID_FS_LABEL_SAFE= |
|
77 |
||
78 |
$ /sbin/blkid ## from 'e2fsprogs' package |
|
79 |
/dev/sdc2: UUID="46B6-1FD4" TYPE="vfat" |
|
80 |
/dev/sdb2: TYPE="ntfs" UUID="BC48D3FD48D3B47C" LABEL="inst" |
|
81 |
/dev/sda5: UUID="5240AED140AEBB5D" LABEL="music" TYPE="ntfs" |
|
82 |
/dev/sdc1: UUID="81c4444f-0b70-429a-9d97-8c13e8651f5b" TYPE="ext3" |
|
83 |
/dev/sdc3: UUID="KOpHWz-clDR-2MqV-vAkE-cPvY-uZrY-kjYJIb" TYPE="lvm2pv" |
|
84 |
||
85 |
$ udevinfo --query=all --name /dev/sdb ## from 'udev' package |
|
86 |
P: /block/sdb |
|
87 |
N: sdb |
|
88 |
S: disk/by-id/ata-WDC_WD1600JS-00MHB0_WD-WCANM5835587 |
|
89 |
S: disk/by-id/scsi-SATA_WDC_WD1600JS-00_WD-WCANM5835587 |
|
90 |
S: disk/by-path/pci-0000:00:08.0-scsi-1:0:0:0 |
|
91 |
E: ID_VENDOR=ATA |
|
92 |
E: ID_MODEL=WDC_WD1600JS-00M |
|
93 |
E: ID_REVISION=02.0 |
|
94 |
... |
|
95 |
||
96 |
How set UUID and label? |
|
97 |
======================= |
|
98 |
||
99 |
For ext2/ext3 fs:: |
|
100 |
||
101 |
$ sudo tune2fs /dev/hdb1 -U `uuid` |
|
102 |
||
103 |
Linux fs under Windows. |
|
104 |
======================= |
|
105 |
||
106 |
Ext2 IFS. |
|
107 |
--------- |
|
108 |
||
109 |
It provides Windows NT4.0/2000/XP/2003/Vista/2008 with full access to Linux Ext2 |
|
110 |
volumes (read access and write access). This may be useful if you have installed |
|
111 |
both Windows and Linux as a dual boot environment on your computer. |
|
112 |
||
113 |
The "Ext2 Installable File System for Windows" software is freeware. |
|
114 |
||
115 |
After install use 'ifsdrives.cpl' control panel to modify settings. |
|
116 |
||
117 |
http://www.fs-driver.org/ |
|
118 |
home page |
|
119 |
||
120 |
Ext2Fsd. |
|
121 |
-------- |
|
122 |
||
123 |
Ext2Fsd is an open source linux ext2/ext3 file system driver for Windows systems |
|
124 |
(NT/2K/XP/VISTA, X86/AMD64). |
|
125 |
||
126 |
http://www.ext2fsd.com/ |
|
127 |
Home page. |
|
128 |
http://sourceforge.net/projects/ext2fsd/ |
|
129 |
Sourceforge home page. |
|
130 |
||
131 |
||
132 |
rfstool. |
|
133 |
-------- |
|
134 |
||
135 |
Allows you to access ReiserFS partitions from a Windows 95/98/ME/NT/2000/XP |
|
136 |
system. It also allows you to access ReiserFS partitions from Linux. It is a |
|
137 |
complete rewrite of the ReiserFS functions needed to list directories, copy |
|
138 |
files, and backup metadata. |
|
139 |
||
140 |
http://p-nand-q.com/e/reiserfs.html |
|
141 |
home page |
|
142 |
http://freshmeat.net/projects/rfstool/ |
|
143 |
Freshmeat home page. |
|
144 |
||
145 |
Summary files size. |
|
146 |
=================== |
|
147 |
:: |
|
148 |
||
149 |
$ find . -type f -iname "*.log" -print0 | du --files0-from=- -c -m | tail -n 1 \ |
|
150 |
| (read first rest; echo $first) |
|
151 |
||
152 |
Mount NTFS in Linux. |
|
153 |
==================== |
|
154 |
||
155 |
Mount in rw mode:: |
|
156 |
||
157 |
$ man 8 ntfs-3g |
|
158 |
$ cat /etc/fstab |
|
159 |
... |
|
160 |
UUID=D474CB9874CB7C2C /mnt/winbin ntfs-3g rw,default_permissions,gid=1000,fmask=113,dmask=002,noatime,silent 0 0 |
|
161 |
... |
|
162 |