Журнал лабораторных работ

Содержание

Журнал

Вторник (06/19/12)

/dev/pts/0
18:27:15
#echo $1

18:27:26
#echo $2

18:27:28
#cd tmp
l3script: cd: tmp: No such file or directory
18:27:58
#cd tmp
l3script: cd: tmp: No such file or directory
18:28:13
#touch file

18:28:25
#ln file file2

18:28:58
#ls
file  file2
18:29:00
#ls -l
total 0
-rw-r--r-- 2 root root 0 Jun 19 16:28 file
-rw-r--r-- 2 root root 0 Jun 19 16:28 file2
18:29:04
#ls -li
total 0
23556 -rw-r--r-- 2 root root 0 Jun 19 16:28 file
23556 -rw-r--r-- 2 root root 0 Jun 19 16:28 file2
18:29:06
#ln -s file file3

18:29:26
#ls -l
total 0
-rw-r--r-- 2 root root 0 Jun 19 16:28 file
-rw-r--r-- 2 root root 0 Jun 19 16:28 file2
lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
18:29:31
#ls -li
total 0
23556 -rw-r--r-- 2 root root 0 Jun 19 16:28 file
23556 -rw-r--r-- 2 root root 0 Jun 19 16:28 file2
23660 lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
18:29:35
#echo file > file

18:30:12
#cat file
file
18:30:19
#cat file2
file
18:30:22
#cat file4
cat: file4: No such file or directory
18:30:25
#cat file3
file
18:30:27
#touch new

18:30:41
#ln -s new sym_ne

18:30:58
#echo new > new

18:31:09
#echo new > sym_ne

18:31:16
#echo new0 > sym_ne

18:31:26
#cat new
new0
18:31:30
#ls -li
total 12
23556 -rw-r--r-- 2 root root 5 Jun 19 16:30 file
23556 -rw-r--r-- 2 root root 5 Jun 19 16:30 file2
23660 lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
24128 -rw-r--r-- 1 root root 5 Jun 19 16:31 new
24140 lrwxrwxrwx 1 root root 3 Jun 19 16:30 sym_ne -> new
18:31:47
#bdf
l3script: bdf: command not found
18:32:08
#apt-get install bdf
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package bdf
18:32:27
#ls -lh
total 12K
-rw-r--r-- 2 root root 5 Jun 19 16:30 file
-rw-r--r-- 2 root root 5 Jun 19 16:30 file2
lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
-rw-r--r-- 1 root root 5 Jun 19 16:31 new
lrwxrwxrwx 1 root root 3 Jun 19 16:30 sym_ne -> new
18:32:43
#ls -li
total 12
23556 -rw-r--r-- 2 root root 5 Jun 19 16:30 file
23556 -rw-r--r-- 2 root root 5 Jun 19 16:30 file2
23660 lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
24128 -rw-r--r-- 1 root root 5 Jun 19 16:31 new
24140 lrwxrwxrwx 1 root root 3 Jun 19 16:30 sym_ne -> new
18:35:46
#ln /root/
.bash_history  .bashrc        .lilalo/       .ssh/          200[0-9]/      2012/          2014/          install
.bash_profile  .l3rc          .profile       .viminfo       2011/          2013/          2015/
18:35:46
#ln /root/2012/1\{0
1{01/ 1{02/ 1{03/ 1{04/ 1{05/
18:35:46
#ln /root/2012/1\{0
1{01/ 1{02/ 1{03/ 1{04/ 1{05/
18:35:46
#ln /root/2012/1\{02/ folder
ln: `/root/2012/1{02/': hard link not allowed for directory
18:37:48
#ls -ls
total 12
4 -rw-r--r-- 2 root root 5 Jun 19 16:30 file
4 -rw-r--r-- 2 root root 5 Jun 19 16:30 file2
0 lrwxrwxrwx 1 root root 4 Jun 19 16:29 file3 -> file
4 -rw-r--r-- 1 root root 5 Jun 19 16:31 new
0 lrwxrwxrwx 1 root root 3 Jun 19 16:30 sym_ne -> new
18:37:57