История изменений
Исправление IIIypuk, (текущая версия) :
[root@m3 ~]# dd if=/dev/zero of=./FS bs=1M count=10
10+0 records in
10+0 records out
10485760 bytes (10 MB, 10 MiB) copied, 0.0646172 s, 162 MB/s
[root@m3 ~]# mkfs.ext4 -c ./FS
mke2fs 1.43.4 (31-Jan-2017)
...
[root@m3 ~]# mkdir ./abc
[root@m3 ~]# mount ./FS ./abc/
[root@m3 ~]#
PROFIT!
Исправление IIIypuk, :
[root@m3 ~]# dd if=/dev/zero of=./FS bs=1M count=10 10+0 records in 10+0 records out 10485760 bytes (10 MB, 10 MiB) copied, 0.0646172 s, 162 MB/s
[root@m3 ~]# mkfs.ext4 -c ./FS mke2fs 1.43.4 (31-Jan-2017) ...
[root@m3 ~]# mkdir ./abc [root@m3 ~]# mount ./FS ./abc/ [root@m3 ~]# PROFIT!
Исправление IIIypuk, :
[root@m3 alex]# cd
[root@m3 ~]# dd if=/dev/zero of=./FS bs=1M count=10
...
Checking for bad blocks (read-only test): done
Allocating group tables: done
Writing inode tables: done
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: done
[root@m3 ~]# mkfs.ext4 -c ./FS
[root@m3 ~]# mkdir ./abc
[root@m3 ~]# mount ./FS ./abc/
[root@m3 ~]#
PROFIT!
Исходная версия IIIypuk, :
[root@m3 alex]# cd
[root@m3 ~]# dd if=/dev/zero of=./FS bs=1M count=10
...
Checking for bad blocks (read-only test): done
Allocating group tables: done
Writing inode tables: done
Creating journal (1024 blocks): done
Writing superblocks and filesystem accounting information: done
[root@m3 ~]# mkdir abc
[root@m3 ~]# mount ./FS ./abc/
[root@m3 ~]#
PROFIT!