/l3/users/12-03-2007/nt-lnet/linux3.net.nt/root :1 :2 :3 :4 :5 :6 :7 :8 :9 :10 |
|
#/etc/init.d/xinetd restart
Stopping internet superserver: xinetd. Starting internet superserver: xinetd. |
#netstat -lnp | grep xinetd
tcp 0 0 0.0.0.0:7 0.0.0.0:* LISTEN 14666/xinetd tcp 0 0 0.0.0.0:19 0.0.0.0:* LISTEN 14666/xinetd udp 0 0 0.0.0.0:13 0.0.0.0:* 14666/xinetd udp 0 0 0.0.0.0:19 0.0.0.0:* 14666/xinetd udp 0 0 0.0.0.0:19 0.0.0.0:* 14666/xinetd |
#vim /etc/xinetd.d/echo
17,26c17,26 < #service echo < #{ < # disable = no < # type = INTERNAL < # id = echo-dgram < # socket_type = dgram < # protocol = udp < # user = root < # wait = yes < #} --- > service echo > { > disable = no > type = INTERNAL > id = echo-dgram > socket_type = dgram > protocol = udp > user = root > wait = yes > } |
#/etc/init.d/xinetd restart
Stopping internet superserver: xinetd. Starting internet superserver: xinetd. |
#/etc/init.d/xinetd restart
Mar 13 16:08:54 linux3 xinetd[14576]: missing service keyword [file=/etc/xinetd.d/echo] [line=1] Mar 13 16:08:54 linux3 xinetd[14576]: Reading included configuration file: /etc/xinetd.d/time [file=/etc/xinetd.d/time] [line=26] Mar 13 16:08:54 linux3 xinetd[14576]: removing discard Mar 13 16:08:54 linux3 xinetd[14576]: removing discard Mar 13 16:08:54 linux3 xinetd[14576]: removing time Mar 13 16:08:54 linux3 xinetd[14576]: removing time Mar 13 16:08:54 linux3 xinetd[14576]: bind failed (Address already in use (errno = 98)). service = chargen-stream Mar 13 16:08:54 linux3 xinetd[14576]: Service chargen-stream failed to start and is deactivated. Mar 13 16:08:54 linux3 xinetd[14576]: xinetd Version 2.3.14 started with libwrap loadavg options compiled in. Mar 13 16:08:54 linux3 xinetd[14576]: Started working: 4 available services ... Mar 13 16:10:57 linux3 xinetd[14728]: removing discard Mar 13 16:10:57 linux3 xinetd[14728]: removing discard Mar 13 16:10:57 linux3 xinetd[14728]: removing time Mar 13 16:10:57 linux3 xinetd[14728]: removing time Mar 13 16:10:57 linux3 xinetd[14728]: bind failed (Address already in use (errno = 98)). service = chargen-stream Mar 13 16:10:57 linux3 xinetd[14728]: Service chargen-stream failed to start and is deactivated. Mar 13 16:10:57 linux3 xinetd[14728]: xinetd Version 2.3.14 started with libwrap loadavg options compiled in. Mar 13 16:10:57 linux3 xinetd[14728]: Started working: 6 available services Stopping internet superserver: xinetd. Starting internet superserver: xinetd. |
#netstat -lnp | grep xinetd
tcp 0 0 0.0.0.0:7 0.0.0.0:* LISTEN 14728/xinetd tcp 0 0 0.0.0.0:19 0.0.0.0:* LISTEN 14728/xinetd udp 0 0 0.0.0.0:7 0.0.0.0:* 14728/xinetd udp 0 0 0.0.0.0:13 0.0.0.0:* 14728/xinetd udp 0 0 0.0.0.0:19 0.0.0.0:* 14728/xinetd udp 0 0 0.0.0.0:19 0.0.0.0:* 14728/xinetd |
#vim /etc/hosts.allow
13,14c13,14 < chargen echo: 192.168.16.0 : allow < #echo: 127.0.0.1 localhost : allow --- > chargen: 192.168.16.0 : allow > echo: ALL : allow |
#telnet localhost echo
Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. 2 2 34 34 }q }q ^] telnet> q Connection closed. |
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#ping 192.168.16.1
PING 192.168.16.1 (192.168.16.1) 56(84) bytes of data. From 192.168.16.1 icmp_seq=1 Destination Host Unreachable From 192.168.16.1 icmp_seq=2 Destination Host Unreachable From 192.168.16.1 icmp_seq=3 Destination Host Unreachable From 192.168.16.1 icmp_seq=4 Destination Host Unreachable From 192.168.16.1 icmp_seq=5 Destination Host Unreachable From 192.168.16.1 icmp_seq=6 Destination Host Unreachable From 192.168.16.1 icmp_seq=7 Destination Host Unreachable From 192.168.16.1 icmp_seq=8 Destination Host Unreachable From 192.168.16.1 icmp_seq=9 Destination Host Unreachable From 192.168.16.1 icmp_seq=10 Destination Host Unreachable From 192.168.16.1 icmp_seq=11 Destination Host Unreachable From 192.168.16.1 icmp_seq=12 Destination Host Unreachable From 192.168.16.1 icmp_seq=13 Destination Host Unreachable From 192.168.16.1 icmp_seq=14 Destination Host Unreachable From 192.168.16.1 icmp_seq=15 Destination Host Unreachable From 192.168.16.1 icmp_seq=16 Destination Host Unreachable --- 192.168.16.1 ping statistics --- 16 packets transmitted, 0 received, +16 errors, 100% packet loss, time 15002ms |
#man iproute2
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -A INPUT -d 127.0.0.1 -p icmp -j DROP
iptables v1.3.6: Couldn't load target `DROP7.0.0':/lib/iptables/libipt_DROP7.0.0.so: cannot open shared object file: No such file or directory Try `iptables -h' or 'iptables --help' for more information. |
#iptables -A INPUT -d 127.0.0.1 -p icmp -j DROP
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination DROP icmp -- anywhere localhost Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#ping 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. --- 127.0.0.1 ping statistics --- 41 packets transmitted, 0 received, 100% packet loss, time 40012ms |
#iptables -F INPUT
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#ping 127.0.0.1
PING 127.0.0.1 (127.0.0.1) 56(84) bytes of data. 64 bytes from 127.0.0.1: icmp_seq=1 ttl=64 time=0.104 ms 64 bytes from 127.0.0.1: icmp_seq=2 ttl=64 time=0.058 ms 64 bytes from 127.0.0.1: icmp_seq=3 ttl=64 time=0.060 ms 64 bytes from 127.0.0.1: icmp_seq=4 ttl=64 time=0.059 ms 64 bytes from 127.0.0.1: icmp_seq=5 ttl=64 time=0.060 ms 64 bytes from 127.0.0.1: icmp_seq=6 ttl=64 time=0.059 ms 64 bytes from 127.0.0.1: icmp_seq=7 ttl=64 time=0.057 ms 64 bytes from 127.0.0.1: icmp_seq=8 ttl=64 time=0.060 ms 64 bytes from 127.0.0.1: icmp_seq=9 ttl=64 time=0.058 ms 64 bytes from 127.0.0.1: icmp_seq=10 ttl=64 time=0.058 ms 64 bytes from 127.0.0.1: icmp_seq=11 ttl=64 time=0.105 ms 64 bytes from 127.0.0.1: icmp_seq=12 ttl=64 time=0.060 ms 64 bytes from 127.0.0.1: icmp_seq=13 ttl=64 time=0.060 ms ^]64 bytes from 127.0.0.1: icmp_seq=14 ttl=64 time=0.058 ms 64 bytes from 127.0.0.1: icmp_seq=15 ttl=64 time=0.057 ms --- 127.0.0.1 ping statistics --- 15 packets transmitted, 15 received, 0% packet loss, time 14012ms rtt min/avg/max/mdev = 0.057/0.064/0.105/0.018 ms |
#vim /etc/hosts.allow
|
#vim /etc/hosts.allow
12a13 > ssh : 0.0.0.0/0.0.0.0 : allow |
#tsil /var/log/daemon.log
bash: tsil: command not found |
#tail /var/log/daemon.log
Mar 14 09:30:28 linux3 xinetd[2718]: removing time Mar 14 09:30:28 linux3 xinetd[2718]: removing time Mar 14 09:30:28 linux3 xinetd[2718]: bind failed (Address already in use (errno = 98)). service = chargen-stream Mar 14 09:30:28 linux3 xinetd[2718]: Service chargen-stream failed to start and is deactivated. Mar 14 09:30:28 linux3 xinetd[2718]: xinetd Version 2.3.14 started with libwrap loadavg options compiled in. Mar 14 09:30:28 linux3 xinetd[2718]: Started working: 6 available services Mar 14 09:30:29 linux3 rpc.statd[2736]: Version 1.0.10 Starting Mar 14 09:30:47 linux3 gdm[2730]: Ð\235е Ñ\203далоÑ\201Ñ\214 авÑ\202оÑ\200изоваÑ\202Ñ\214 полÑ\214зоваÑ\202елÑ\217 Mar 14 09:31:09 linux3 NetworkManager: <information>^IUpdating allowed wireless network lists. Mar 14 09:31:09 linux3 NetworkManager: <WARNING>^I nm_dbus_get_networks_cb (): error received: org.freedesktop.NetworkManagerInfo.NoNetworks - There are no wireless networks stored.. |
#ping mail.ru
PING mail.ru (194.67.57.26) 56(84) bytes of data. 64 bytes from mail.ru (194.67.57.26): icmp_seq=1 ttl=112 time=99.1 ms --- mail.ru ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 99.139/99.139/99.139/0.000 ms |
#vim /etc/hosts.deny
|
#vim /etc/hosts.allow
17c17 < ALL: ALL : deny --- > #ALL: ALL : deny |
#/etc/init.d/ssh restart
Restarting OpenBSD Secure Shell server: sshd. |
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -A INPUT -p tcp --dport 80 -j ACCEPT
|
#iptables -A INPUT -p tcp --dport 22 -j ACCEPT
|
#iptables -A INPUT -p tcp -j DROP
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT tcp -- anywhere anywhere tcp dpt:www ACCEPT tcp -- anywhere anywhere tcp dpt:ssh DROP tcp -- anywhere anywhere Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#ping 192.168.16.15
PING 192.168.16.15 (192.168.16.15) 56(84) bytes of data. 64 bytes from 192.168.16.15: icmp_seq=1 ttl=64 time=0.253 ms 64 bytes from 192.168.16.15: icmp_seq=2 ttl=64 time=0.217 ms 64 bytes from 192.168.16.15: icmp_seq=3 ttl=64 time=0.229 ms --- 192.168.16.15 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2003ms rtt min/avg/max/mdev = 0.217/0.233/0.253/0.015 ms |
#telnet 192.168.16.15
Trying 192.168.16.15... sds dsfd ^] ^] |
#telnet 192.168.16.15 7
Trying 192.168.16.15... |
#telnet 192.168.15.254 7
Trying 192.168.15.254... |
#iptables -F
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#telnet 192.168.15.254 7
Trying 192.168.15.254... Connected to 192.168.15.254. Escape character is '^]'. l l l l k k } } ^] telnet> quit Connection closed. |
#iptables -A INPUT -p tcp --dport 80 -j ACCEPT
|
#iptables -A INPUT -p tcp --dport 22 -j ACCEPT
|
#iptables -A INPUT -p tcp --syn -j DROP
|
#nmap 127.0.0.1
bash: nmap: command not found |
#apt-get install nmap
Чтение списков пакетов... Готово Построение дерева зависимостей... Готово НОВЫЕ пакеты, которые будут установлены: nmap обновлено 0, установлено 1 новых пакетов, для удаления отмечено 0 пакетов, и 105 пакетов не обновлено. Необходимо скачать 736kБ архивов. После распаковки объем занятого дискового пространства возрастёт на 2515kB. Получено:1 http://192.168.16.15 etch/main nmap 4.11-1 [736kB] Получено 736kB за 0s (921kB/c) Выбор ранее не выбранного пакета nmap. (Чтение базы данных... на данный момент установлено 77721 файлов и каталогов.) Распаковывается пакет nmap (из файла .../archives/nmap_4.11-1_i386.deb)... Настраивается пакет nmap (4.11-1) ... |
#nmap 127.0.0.1
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-03-14 12:22 EET Interesting ports on localhost (127.0.0.1): Not shown: 1678 filtered ports PORT STATE SERVICE 22/tcp open ssh 80/tcp closed http Nmap finished: 1 IP address (1 host up) scanned in 21.417 seconds |
#nmap 192.168.16.3
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-03-14 12:23 EET Interesting ports on linux3.net.nt (192.168.16.3): Not shown: 1678 filtered ports PORT STATE SERVICE 22/tcp open ssh 80/tcp closed http Nmap finished: 1 IP address (1 host up) scanned in 21.491 seconds |
#iptables -F
|
#ifconfig
eth0 Link encap:Ethernet HWaddr 00:01:02:B4:61:97 inet addr:192.168.16.3 Bcast:192.168.16.255 Mask:255.255.255.0 inet6 addr: fe80::201:2ff:feb4:6197/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:1622846 errors:0 dropped:0 overruns:0 frame:0 TX packets:3791612 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:145381640 (138.6 MiB) TX bytes:1256596164 (1.1 GiB) Interrupt:169 eth1 Link encap:Ethernet HWaddr 00:04:76:A1:F0:5D ... RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:201 Base address:0x2000 lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:6817 errors:0 dropped:0 overruns:0 frame:0 TX packets:6817 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:302948 (295.8 KiB) TX bytes:302948 (295.8 KiB) |
#iptables -A INPUT -i eth1 -p tcp --dport 80 -j ACCEPT
|
#iptables -A INPUT -i eth1 -p tcp --dport 22 -j ACCEPT
|
#iptables -A INPUT -i eth1 -p tcp --syn -j DROP
|
#nmap 127.0.0.1
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-03-14 12:30 EET Interesting ports on localhost (127.0.0.1): Not shown: 1672 closed ports PORT STATE SERVICE 7/tcp open echo 19/tcp open chargen 22/tcp open ssh 25/tcp open smtp 111/tcp open rpcbind 113/tcp open auth 631/tcp open ipp 2628/tcp open dict Nmap finished: 1 IP address (1 host up) scanned in 0.179 seconds |
#ssh user@linux1
The authenticity of host 'linux1 (192.168.16.1)' can't be established. RSA key fingerprint is ed:b0:a6:90:3e:3e:8a:2e:fb:98:23:e3:8f:85:b0:b7. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'linux1,192.168.16.1' (RSA) to the list of known hosts. user@linux1's password: Permission denied, please try again. user@linux1's password: Linux linux1 2.6.18-4-686 #1 SMP Wed Feb 21 16:06:54 UTC 2007 i686 The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. You have new mail. Last login: Wed Mar 14 11:26:22 2007 from 192.168.16.15 l3-agent is already running: pid=8137; pidfile=/home/user/.lilalo/l3-agent.pid bash: /home/user/vnc: No such file or directory |
$nmap 192.168.16.3
Starting Nmap 4.11 ( http://www.insecure.org/nmap/ ) at 2007-03-14 12:34 EET Interesting ports on linux3.net.nt (192.168.16.3): Not shown: 1674 closed ports PORT STATE SERVICE 7/tcp open echo 19/tcp open chargen 22/tcp open ssh 111/tcp open rpcbind 113/tcp open auth 2628/tcp open dict Nmap finished: 1 IP address (1 host up) scanned in 0.336 seconds |
$iptables -F
bash: iptables: command not found |
$quit
bash: quit: command not found |
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT tcp -- anywhere anywhere tcp dpt:www ACCEPT tcp -- anywhere anywhere tcp dpt:ssh DROP tcp -- anywhere anywhere tcp flags:FIN,SYN,RST,ACK/SYN Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -F
|
#iptables -A INPUT -i eth0 -p tcp --dport 80 -j ACCEPT
|
#iptables -A INPUT -i eth0 -p tcp --dport 22 -j ACCEPT
|
#iptables -A INPUT -i eth0 -p tcp --syn -j DROP
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination ACCEPT tcp -- anywhere anywhere tcp dpt:www ACCEPT tcp -- anywhere anywhere tcp dpt:ssh DROP tcp -- anywhere anywhere tcp flags:FIN,SYN,RST,ACK/SYN Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -F
|
#iptables -L
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -A FORWARD -i eth0 -p tcp --syn -j DROP
|
#iptables -A FORWARD -i eth0 -p icmp -j DROP
|
#iptables -A FORWARD -i eth0 -p udp -j DROP
|
#telnet 192.168.16.15
Trying 192.168.16.15... telnet: Unable to connect to remote host: Connection refused |
#telnet 192.168.16.15 7
Trying 192.168.16.15... Connected to 192.168.16.15. Escape character is '^]'. h h ^] telnet> q Connection closed. |
#iptables -F
|
#iptables -t nat -L
Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain POSTROUTING (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination |
#iptables -t nat -A POSTROUTING -s 192.168.16.0/24 -j MAsquerad
|
#iptables -t nat -F
|
#iptables -t nat -I PREROUTING -p tcp --dport 22 -j REDIRECT
|
#iptables -t nat -F
|
#pwd
/root |
#cd /etc
|
#ls
acpi esound libgda rc2.d adduser.conf exim4 libpaper.d rc3.d adjtime fonts locale.gen rc4.d aliases foomatic localtime rc5.d alsa fstab login.defs rc6.d alternatives gaim logrotate.conf rc.local anacrontab gconf logrotate.d rcS.d apm gdm lsb-base reportbug.conf apt gimp magic resolvconf at.deny gnome mailcap resolv.conf ... dictionaries-common issue.net passwd- vim discover.conf java perl w3m discover.conf-2.6 kde3 pmount.allow wgetrc discover.conf.d kernel-img.conf ppp wodim.conf discover.d ldap profile wpa_supplicant dm ld.so.cache protocols X11 dpkg ld.so.conf python xdg emacs ld.so.conf.d python2.4 xinetd.conf email-addresses ld.so.hwcappkgs rc0.d xinetd.d environment libao.conf rc1.d xml |
#cd ssh
|
#ls
moduli sshd_config ssh_host_dsa_key.pub ssh_host_rsa_key.pub ssh_config ssh_host_dsa_key ssh_host_rsa_key |
#cd ssh_host_dsa_key.pub
bash: cd: ssh_host_dsa_key.pub: Not a directory |
#cd ssh_host_dsa_key.pub
bash: cd: ssh_host_dsa_key.pub: Not a directory |
#cd /ssh_host_dsa_key.pub
bash: cd: /ssh_host_dsa_key.pub: No such file or directory |
#vim ssh_host_dsa_key.pub
|
#vim ssh_config
|
#ssh -X clint@192.168.16.15 firefox
The authenticity of host '192.168.16.15 (192.168.16.15)' can't be established. RSA key fingerprint is 33:88:39:f0:bd:1f:5e:b0:f6:d8:d3:90:0a:b9:e9:de. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.168.16.15' (RSA) to the list of known hosts. clint@192.168.16.15's password: Permission denied, please try again. clint@192.168.16.15's password: (firefox-bin:4774): Gtk-WARNING **: cannot open display: |
#echo $DISPLAY
|
#cd~
bash: cd~: command not found |
#netstat -l | grep localhost
tcp 0 0 localhost:2208 *:* LISTEN tcp 0 0 localhost:ipp *:* LISTEN tcp 0 0 localhost:27000 *:* LISTEN tcp 0 0 localhost:smtp *:* LISTEN tcp 0 0 localhost:55742 *:* LISTEN tcp6 0 0 ip6-localhost:27000 *:* LISTEN |
#ssh 127.0.0.1 -p 27000
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established. RSA key fingerprint is ed:b0:a6:90:3e:3e:8a:2e:fb:98:23:e3:8f:85:b0:b7. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '127.0.0.1' (RSA) to the list of known hosts. root@127.0.0.1's password: Permission denied, please try again. root@127.0.0.1's password: Last login: Wed Mar 14 15:13:51 2007 from linux2.net.nt Linux linux1 2.6.18-4-686 #1 SMP Wed Feb 21 16:06:54 UTC 2007 i686 The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law. l3-agent is already running: pid=13943; pidfile=/root/.lilalo/l3-agent.pid |
#w
15:28:40 up 5:58, 14 users, load average: 1,40, 1,05, 0,96 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT user :0 - 09:31 ?xdm? 47:21m 0.99s x-session-manager user pts/0 :0.0 09:31 1:33 0.35s 0.26s script -f -q /home/user/.lilalo//906493 user pts/2 :0.0 09:31 5:55 0.94s 0.24s script -f -q /home/user/.lilalo//398025 user pts/4 :0.0 09:31 4:12 1.79s 0.25s script -f -q /home/user/.lilalo//139172 user pts/6 :0.0 09:31 1:38 0.29s 0.26s script -f -q /home/user/.lilalo//792456 root pts/9 :pts/8:S.0 09:33 0.00s 1.40s 0.20s script -f -q /root/.lilalo//18170109452 root pts/11 localhost 15:28 0.00s 0.01s 0.01s script -f -q /root/.lilalo//23860104052 root pts/13 192.168.16.15 09:54 0.00s 2.90s 0.22s script -f -q /root/.lilalo//29635518928 user pts/15 linux3.net.nt 13:11 1:29 0.78s 0.23s script -f -q /home/user/.lilalo//248757 user pts/17 linux1.net.nt 13:18 1:29 0.72s 0.23s script -f -q /home/user/.lilalo//147262 user pts/19 linux1.net.nt 13:36 1:29 0.83s 0.25s script -f -q /home/user/.lilalo//160611 user pts/21 linux2.net.nt 13:39 1:29 0.92s 0.24s script -f -q /home/user/.lilalo//315851 user pts/23 192.168.16.15 13:43 22:30m 0.26s 0.25s script -f -q /home/user/.lilalo//888980 root pts/12 linux2.net.nt 15:13 14:45m 0.03s 0.01s script -f -q /root/.lilalo//31379314611 |
#netstat -lnp | less
|
#netstat -l | less
|
#exit
Connection to 127.0.0.1 closed. |
#pwd
/root |
#ls
install |
#ls -al
итого 33 drwxr-xr-x 5 root root 1024 2007-03-14 13:43 . drwxr-xr-x 23 root root 1024 2007-03-02 18:56 .. drwx------ 2 root root 1024 2007-03-02 18:51 .aptitude -rw------- 1 root root 7116 2007-03-14 15:29 .bash_history -rw-r--r-- 1 root root 19 2007-03-11 06:59 .bash_profile -rw-r--r-- 1 root root 450 2007-03-11 06:57 .bashrc -rw-r--r-- 1 root root 4190 2007-03-11 06:41 install -rw-r--r-- 1 root root 50 2007-03-11 06:57 .l3rc -rw------- 1 root root 35 2007-03-14 15:29 .lesshst drwxr-xr-x 2 root root 7168 2007-03-14 16:10 .lilalo -rw-r--r-- 1 root root 110 2004-11-10 18:10 .profile drwx------ 2 root root 1024 2007-03-14 12:34 .ssh -rw------- 1 root root 4951 2007-03-14 13:43 .viminfo |
#pwd
/root |
#cd ..
|
Время первой команды журнала | 16:10:23 2007- 3-13 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Время последней команды журнала | 16:10:20 2007- 3-14 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Количество командных строк в журнале | 101 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Процент команд с ненулевым кодом завершения, % | 10.89 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Процент синтаксически неверно набранных команд, % | 4.95 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Суммарное время работы с терминалом *, час | 1.57 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Количество командных строк в единицу времени, команда/мин | 1.07 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Частота использования команд |
|
В журнал автоматически попадают все команды, данные в любом терминале системы.
Для того чтобы убедиться, что журнал на текущем терминале ведётся, и команды записываются, дайте команду w. В поле WHAT, соответствующем текущему терминалу, должна быть указана программа script.
Команды, при наборе которых были допущены синтаксические ошибки, выводятся перечёркнутым текстом:
$ l s-l bash: l: command not found |
Если код завершения команды равен нулю, команда была выполнена без ошибок. Команды, код завершения которых отличен от нуля, выделяются цветом.
$ test 5 -lt 4 |
Команды, ход выполнения которых был прерван пользователем, выделяются цветом.
$ find / -name abc find: /home/devi-orig/.gnome2: Keine Berechtigung find: /home/devi-orig/.gnome2_private: Keine Berechtigung find: /home/devi-orig/.nautilus/metafiles: Keine Berechtigung find: /home/devi-orig/.metacity: Keine Berechtigung find: /home/devi-orig/.inkscape: Keine Berechtigung ^C |
Команды, выполненные с привилегиями суперпользователя, выделяются слева красной чертой.
# id uid=0(root) gid=0(root) Gruppen=0(root) |
Изменения, внесённые в текстовый файл с помощью редактора, запоминаются и показываются в журнале в формате ed. Строки, начинающиеся символом "<", удалены, а строки, начинающиеся символом ">" -- добавлены.
$ vi ~/.bashrc
|
Для того чтобы изменить файл в соответствии с показанными в диффшоте изменениями, можно воспользоваться командой patch. Нужно скопировать изменения, запустить программу patch, указав в качестве её аргумента файл, к которому применяются изменения, и всавить скопированный текст:
$ patch ~/.bashrc |
Для того чтобы получить краткую справочную информацию о команде, нужно подвести к ней мышь. Во всплывающей подсказке появится краткое описание команды.
Если справочная информация о команде есть, команда выделяется голубым фоном, например: vi. Если справочная информация отсутствует, команда выделяется розовым фоном, например: notepad.exe. Справочная информация может отсутствовать в том случае, если (1) команда введена неверно; (2) если распознавание команды LiLaLo выполнено неверно; (3) если информация о команде неизвестна LiLaLo. Последнее возможно для редких команд.
Большие, в особенности многострочные, всплывающие подсказки лучше всего показываются браузерами KDE Konqueror, Apple Safari и Microsoft Internet Explorer. В браузерах Mozilla и Firefox они отображаются не полностью, а вместо перевода строки выводится специальный символ.
Время ввода команды, показанное в журнале, соответствует времени начала ввода командной строки, которое равно тому моменту, когда на терминале появилось приглашение интерпретатора
Имя терминала, на котором была введена команда, показано в специальном блоке. Этот блок показывается только в том случае, если терминал текущей команды отличается от терминала предыдущей.
Вывод не интересующих вас в настоящий момент элементов журнала, таких как время, имя терминала и других, можно отключить. Для этого нужно воспользоваться формой управления журналом вверху страницы.
Небольшие комментарии к командам можно вставлять прямо из командной строки. Комментарий вводится прямо в командную строку, после символов #^ или #v. Символы ^ и v показывают направление выбора команды, к которой относится комментарий: ^ - к предыдущей, v - к следующей. Например, если в командной строке было введено:
$ whoami
user
$ #^ Интересно, кто я?в журнале это будет выглядеть так:
$ whoami
user
Интересно, кто я? |
Если комментарий содержит несколько строк, его можно вставить в журнал следующим образом:
$ whoami
user
$ cat > /dev/null #^ Интересно, кто я?
Программа whoami выводит имя пользователя, под которым мы зарегистрировались в системе. - Она не может ответить на вопрос о нашем назначении в этом мире.В журнале это будет выглядеть так:
$ whoami user
|
Комментарии, не относящиеся непосредственно ни к какой из команд, добавляются точно таким же способом, только вместо симолов #^ или #v нужно использовать символы #=
1 2 3 4Группы команд, выполненных на разных терминалах, разделяются специальной линией. Под этой линией в правом углу показано имя терминала, на котором выполнялись команды. Для того чтобы посмотреть команды только одного сенса, нужно щёкнуть по этому названию.
LiLaLo (L3) расшифровывается как Live Lab Log.
Программа разработана для повышения эффективности обучения Unix/Linux-системам.
(c) Игорь Чубин, 2004-2008