看流星社区

 找回密码
 注册账号
查看: 2325|回复: 0

linux命令和vim学习

[复制链接]

该用户从未签到

发表于 2017-6-1 12:56:33 | 显示全部楼层 |阅读模式
文件相关命令


man less:查看less的帮助手册 --help
sudo cat /etc/passwd:sudo用于获得ROOT权限而又不用知道ROOT密码
/etc/sudoers 配置sudo权限


cd:切换目录
cd ~:切换到/home/zyr/
cd:什么都不带,也是切换到自己的home目录。
cd -:切换到之前的目录


history:运行命令的历史
pwd:当前目录


ls:简要显示文件
ls -a:显示隐藏文件
ls -l:
ll:列表显示文件 在~/.bashrc中:alias ll='ls -l'
ll -a:列表显示文件,包含隐藏文件


zyr@ubuntu:~$ ll 1.txt
- rw- r-- r-- 1 zyr zyr 6 2015-05-25 21:56 1.txt


-:普通文件
d:目录
l:链接
b:块设备文件
c:字符设备
s:套接字文件


user:groupther的属性
r:读-4,w:写-2,x:执行-1




1:表示占用的i结点数


zyr:user
zyr:group


6:文件大小


创建或修改日期


名字




echo hello > 1.txt
echo world >>1.txt


mkdir test:创建test目录
rm -f 1.txt:删除一个文件,不用询问
rm -fr test:删除一个文件夹
cp a b:拷贝文件
mv a b:重命名文件a为b




chown [-R] zyr:zyr 1.txt:把1.txt文件改为用户zyr,组:zyr


chmod 777 1.txt:把1.txt设置为rwx rwx rwx
chmod 666 1.txt:把1.txt设置为rw- rw- rw-


chmod u=rwx,og=rx 1.txt:将user设置为rwx,group,other设置为rx
chmod a+x 1.txt:将所有的加上执行
chmod u-x 1.txt:将user取消执行权限
chmod u+s 1.txt:将1.txt设置强制位 u-s取消 set-uid




chattr [+-=][ASaci [文件或者目录名]
+-= :分别为增加、减少、设定
A:增加该属性后,文件或目录的atime将不可被修改;
S:增加该属性后,会将数据同步写入磁盘中;
a:增加该属性后,只能追加不能删除,非root用户不能设定该属性;
c:自动压缩该文件,读取时会自动解压;
i:增加后,使文件不能被删除、重命名、设定连接、写入、新增数据;


chattr +i 1.txt:该文件不能被删除等
lsattr 1.txt


ln -s /src/path/to/file lnfile:将/src/path/to/file 建立一个符号链接lnfile


find ~/ -name "*.txt" -print
find ~/ -name "*.txt" -print | xargs grep hello
find /usr/src/linux/include/ -name "*.h" | xargs grep "daemonize"


which passwd:找到passwd的路径


cat:全部输出
more:按照比例逐一显示文本,会按照百分比告诉显示了多少内容了,ctrl b/ctrl f可以滚屏
less:不能显示剩余百分比,可用通过 【page down】 【page up】 上翻下翻页查看已经显示出的内容,而more不具备。可以通过"/" "?"来查找内容
head:显示头部的内容前10行
tail:显示尾部10行
tail -f:可以跟踪不断的显示最新数据


管道:
man less | less






用户管理:


/etc/passwd文件结构:
用户名:密码(x替代了,单独放在了/etc/shadow里):uid(0为root,1-499保留,500开始为普通):gid(/etc/group里对应):comment(name,phone,address):homepath:shell(/sbin/nologin为禁止该用户登录)


/etc/shadow文件结构:
用户名:密码:上次修改密码日期距离1970-1-1:过多少时间才能修改密码,默认0:密码到期时间,99999位不过期:密码到期前警告,如7天前:失效期限:生命周期




groupadd [-g gid] groupname
useradd [-u uid] [-g gid] [-d home] [-s /bin/bash] username
passwd username
passwd


userdel username


du -sh:列出文件夹大小总和
du -h:列出各项大小


df -h:列出各个磁盘使用情况




解压缩:


压缩打包:
tar zvcf xx.tar.gz xx
tar cvf xxx.tar xxx/ xz –z xxx.tarxxx.tar.xz
zip -r test.zip ./*


解压:
.tar.gz: tar zvxf xxx.tar.gz
.tar.Z: tar zvxf xxx.tar.Z
.tgz: tar zvxf xxx.tar.tgz
.bz2: bunzip2 xxx.bz2
.tar.bz2: tar jvxf xxx.tar.bz2
.tar.xz: xz–d xxx.tar.xz tar xvf xxx.tar
.zip: unzip xxx.zip
.tar: tar xf xxx.tar


软件安装:
1)ubuntu:
sudo apt-get install xxx
sudo apt-get remove xxx
sudo apt-get update xxx




换源:
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup (表示备份列表)
sudo vim /etc/apt/sources.list


deb http://us.archive.ubuntu.com/ubuntu/ lucid multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid multiverse


http://us.archive.ubuntu.com/ubuntu/dists/lucid/multiverse/


每一行的开头是deb或者deb-src,分别表示直接通过.deb文件进行安装和通过源文件的方式进行安装。


deb或者deb-src字段之后,是一段URL,之后是五个用空格隔开的字符串,分别对应相应的目录结构。在浏览器中输入http://archive.ubuntu.com/ubuntu/,并进入dists目录,可以发现有5个目录和前述sources.list文件中的第三列字段相对应。任选其中一个目录进入,可以看到和sources.list后四列相对应的目录结构。


mirrors.aliyun.com
http://mirrors.aliyun.com/ubuntu/


sudo yum install package -->federo/redhat安装软件




2)package安装:
1)下载一个deb格式的软件kismet


curl https://www.kismetwireless.net/code/dists/quantal/kismet/binary-i386/kismet-2011.03.2.i386.deb > kismet-2011.03.2.i386.deb


2)安装kismet


dpkg -i kismet-2011.03.2.i386.deb


3)源代码安装:


./configure --prefix=安装路径
make
sudo make install


正则式:按行操作 grep, sed, awk


grep hello x.txt:从x.txt中找hello的行
find ~/ -name "*.txt" -print | xargs grep hello
find /usr/src/linux/include/ -name "*.h" | xargs grep "daemonize"


sed -n '3,10'p test.txt :打印test.txt中的3到10行
sed -n '/root/'p /etc/passwd :打印包含root的行
awk -F':' 'NR>20' test.txt 打印test.txt中大于20的行,-F指定':'为每行中的字段的分隔符。不指定默认为空格或者TAB。$0为整行,$1为第一个字段,$2为第二个字段
练习题:
1. 用awk 打印整个test.txt (以下操作都是用awk工具实现,针对test.txt);
1. awk '{print $0}' test.txt
2. 查找所有包含’bash’的行;
2. awk '/bash/' test.txt
3. 用’:’作为分隔符,查找第三段等于0的行;
3. awk -F':' '$3=="0"' test.txt
4. 用’:’作为分隔符,查找第一段为’root’的行,并把该段的’root’换成’toor’(可以连同sed一起使用);
4. awk -F':' '$1=="root"' test.txt |sed 's/root/toor/'
5. 用’:’作为分隔符,打印最后一段;
5. awk -F':' '{print $NF}' test.txt
6. 打印行数大于20的所有行;
6. awk -F':' 'NR>20' test.txt
7. 用’:’作为分隔符,打印所有第三段小于第四段的行;
7. awk -F':' '$3<$4' test.txt
8. 用’:’作为分隔符,打印第一段以及最后一段,并且中间用’@’连接 (例如,第一行应该是这样的形式 “root@/bin/bash”;
8. awk -F':' '{print $1"@"$NF}' test.txt
9. 用’:’作为分隔符,把整个文档的第四段相加,求和;
9. awk -F':' '{(sum+=$4)}; END {print sum}' test.txt
10.杀掉nginx进程:
10.sudo kill -KILL `ps aux | grep nginx| awk '{print $2}'`


sudo kill -9 `ps aux | grep firefox| awk '{print $2}'`


sudo kill -9 pid
进程网络:
cat /proc/meminfo |grep Mem:查看内存
cat /proc/cpuinfo


top
free
ps aux |less
a:所有用户进程
u:用户为主的格式显示
x:所有程序


USER    PID %CPU %MEM  VSZ  RSS TTY   STAT START  TIME COMMAND


VSZ:該进程使用的虚拟內存量(KB)
RSS:該進程占用的固定內存量(KB)(驻留中页的数量)
STAT:STAT显示了进程当前的状态"S":进程处在睡眠状态


sudo kill -9 pid


netstat -anp:a,所有选项,N表示数字显示,P表示进程


ifconfig


iptables
sudo iptables -A OUTPUT -p tcp --dport 80 -j DROP
格式:iptables [-t table] COMMAND chain   CRETIRIA    -j ACTION
sudo iptables      -A   OUTPUT -p tcp --dport 80 -j DROP 禁止访问80端口
sudo iptables -L -n -v --line-numbers
sudo iptables -D OUTPUT 1




vim ~/.profile
EDITOR=vim;export EDITOR
source ~/.profile


crontab –e/l/r
-e:编辑
*  *  *  *  *  command
分 时 日 月 周 命令


30 21 * * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每晚的21:30重启apache。
45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart
上面的例子表示每月1、10、22日的4 : 45重启apache。


-l:列出
-r:删除


scp
scp /home/daisy/full.tar.gz zyr@172.19.2.75:/home/zyr a-->b
scp zyr@172.19.2.75:/home/zyr/full.tar.gz /home/daisy/full.tar.gz
ssh/xshell 客户端
wget http://www.mallocfree.com/data/pretalk.rar



nohup wget url & 该命令可以在你退出帐户/关闭终端之后继续运行相应的进程。
nohup wget http://www.mallocfree.com/data/pretalk.rar &
关机并重启用:sudo shutdown -r now
关机 断电:sudo shutdown -h now


panic计算机  root下:echo "c" > /proc/sysrq-trigger


立即重启计算机   root下:echo "b" > /proc/sysrq-trigger


立即关闭计算机   root下:echo "o" > /proc/sysrq-trigger




终端:ALT+CTRL+F1 VM:ALT+CTRL+空格 ALT+CTRL+F1
UI:ALT+CTRL+F7 VM:ALT+CTRL+空格 ALT+CTRL+F7




VIM
sudo apt-get install vim
命令模式光标移动:h,j,k,l
编辑模式插入:i,a,o,O,
编辑模式切换:ctrl+[
删除:x,dw,dd
替换:r
保存:w
退出:q,q!,wq
拷贝:v->y  / yy
粘贴:p P xp
u ctrl –r :反悔键
新建:vim newfile
/ ?查找



$:移动光标到行尾
^:移动光标到行首
gg:文件开头
G:文件末尾
%:跳到括号匹配处
ngg:跳到第N行
#:向后查找
*:向前查找
m,ns/a/b/g:在第M,N行之间,a替换为b
<<,>>:缩进
ctrl +p:自动补齐。
ctl+b/ctrl+f:翻页



vim替换方法:
:s/x/y/g,在本行,将x替换为y
:1,ns/x/y/g,在1到n行,将x替换为y
:.,$s/x/y/g,从当前行到文件尾,将X替换为Y
:%s/x/y/g,全局替换
:s/x.*//g,本行去掉以x开头的文字



VIM高级设置
/home/zyr/.vimrc /etc/vimrc


http://www.cnblogs.com/ma6174/archive/2011/12/10/2283393.html
7787479








djwow@ubuntu:~$ man lsee
No manual entry for lsee
djwow@ubuntu:~$ man ping
djwow@ubuntu:~$ --help
--help: command not found
djwow@ubuntu:~$ ping --help
ping: invalid option -- '-'
Usage: ping [-aAbBdDfhLnOqrRUvV] [-c count] [-i interval] [-I interface]
[-m mark] [-M pmtudisc_option] [-l preload] [-p pattern] [-Q tos]
[-s packetsize] [-S sndbuf] [-t ttl] [-T timestamp_option]
[-w deadline] [-W timeout] [hop1 ...] destination
djwow@ubuntu:~$ cd ~
djwow@ubuntu:~$ pws
No command 'pws' found, did you mean:
Command 'pms' from package 'pms' (universe)
Command 'rpws' from package 'ratpoison' (universe)
Command 'psw' from package 'wise' (universe)
Command 'pwd' from package 'coreutils' (main)
Command 'aws' from package 'awscli' (universe)
Command 'pvs' from package 'lvm2' (main)
Command 'ps' from package 'procps' (main)
Command 'pts' from package 'openafs-client' (universe)
pws: command not found
djwow@ubuntu:~$ pwd
/home/djwow
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ cd desktop
bash: cd: desktop: No such file or directory
djwow@ubuntu:~$ cd Desktop/
djwow@ubuntu:~/Desktop$ ls
1.txt 8racecondition
djwow@ubuntu:~/Desktop$ cd
djwow@ubuntu:~$ pws
No command 'pws' found, did you mean:
Command 'pvs' from package 'lvm2' (main)
Command 'pwd' from package 'coreutils' (main)
Command 'rpws' from package 'ratpoison' (universe)
Command 'pms' from package 'pms' (universe)
Command 'pts' from package 'openafs-client' (universe)
Command 'ps' from package 'procps' (main)
Command 'aws' from package 'awscli' (universe)
Command 'psw' from package 'wise' (universe)
pws: command not found
djwow@ubuntu:~$ pwd
/home/djwow
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ ls -a
. Desktop .mozilla Templates
.. .dmrc Music Videos
attack_input Documents .pam_environment .viminfo
attack.sh Downloads Pictures vulp
.bash_history .gconf .pki vulp.c
.bash_logout hell.c .profile .Xauthority
.bashrc hello projects .xinputrc
BiZHi hello.c Public .xsession-errors
.cache .ICEauthority run.sh .xsession-errors.old
.config .local .sudo_as_admin_successful
djwow@ubuntu:~$ ls -l
total 76
-rw-rw-r-- 1 djwow djwow 41 六月 9 2015 attack_input
-rwxrwxrwx 1 djwow djwow 524 六月 9 2015 attack.sh
drwxrwxr-x 2 djwow djwow 4096 三月 18 22:28 BiZHi
drwxr-xr-x 3 djwow djwow 4096 三月 18 23:42 Desktop
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Documents
drwxr-xr-x 2 djwow djwow 4096 三月 18 23:41 Downloads
-rw-rw-r-- 1 djwow djwow 0 五月 13 11:14 hell.c
-rwxr-xr-x 1 root root 7360 三月 18 22:16 hello
-rw-r--r-- 1 root root 123 三月 18 22:15 hello.c
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Music
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Pictures
drwxrwxr-x 2 djwow djwow 4096 三月 18 23:58 projects
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Public
-rwxrwxrwx 1 djwow djwow 100 六月 9 2015 run.sh
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Templates
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Videos
-rwsrwxr-x 1 djwow djwow 7584 五月 13 11:04 vulp
-rw-rw-r-- 1 djwow djwow 462 三月 18 23:54 vulp.c
djwow@ubuntu:~$ ll
total 160
drwxr-xr-x 18 djwow djwow 4096 五月 13 13:30 ./
drwxr-xr-x 3 root root 4096 三月 18 21:43 ../
-rw-rw-r-- 1 djwow djwow 41 六月 9 2015 attack_input
-rwxrwxrwx 1 djwow djwow 524 六月 9 2015 attack.sh*
-rw------- 1 djwow djwow 2314 五月 13 13:48 .bash_history
-rw-r--r-- 1 djwow djwow 220 三月 18 21:43 .bash_logout
-rw-r--r-- 1 djwow djwow 3771 三月 18 21:43 .bashrc
drwxrwxr-x 2 djwow djwow 4096 三月 18 22:28 BiZHi/
drwx------ 21 djwow djwow 4096 五月 13 13:42 .cache/
drwx------ 20 djwow djwow 4096 五月 13 13:32 .config/
drwxr-xr-x 3 djwow djwow 4096 三月 18 23:42 Desktop/
-rw-r--r-- 1 djwow djwow 25 三月 18 21:46 .dmrc
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Documents/
drwxr-xr-x 2 djwow djwow 4096 三月 18 23:41 Downloads/
drwx------ 3 djwow djwow 4096 五月 13 13:30 .gconf/
-rw-rw-r-- 1 djwow djwow 0 五月 13 11:14 hell.c
-rwxr-xr-x 1 root root 7360 三月 18 22:16 hello*
-rw-r--r-- 1 root root 123 三月 18 22:15 hello.c
-rw------- 1 djwow djwow 1908 五月 13 13:30 .ICEauthority
drwx------ 3 djwow djwow 4096 三月 18 21:46 .local/
drwx------ 4 djwow djwow 4096 三月 18 21:50 .mozilla/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Music/
-rw-r--r-- 1 djwow djwow 261 三月 18 22:03 .pam_environment
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Pictures/
drwx------ 3 djwow djwow 4096 三月 18 22:36 .pki/
-rw-r--r-- 1 djwow djwow 675 三月 18 21:43 .profile
drwxrwxr-x 2 djwow djwow 4096 三月 18 23:58 projects/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Public/
-rwxrwxrwx 1 djwow djwow 100 六月 9 2015 run.sh*
-rw-r--r-- 1 djwow djwow 0 三月 18 21:49 .sudo_as_admin_successful
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Templates/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Videos/
-rw------- 1 djwow djwow 4139 五月 13 11:14 .viminfo
-rwsrwxr-x 1 djwow djwow 7584 五月 13 11:04 vulp*
-rw-rw-r-- 1 djwow djwow 462 三月 18 23:54 vulp.c
-rw------- 1 djwow djwow 51 五月 13 13:30 .Xauthority
-rw-rw-r-- 1 djwow djwow 131 三月 18 21:47 .xinputrc
-rw------- 1 djwow djwow 292 五月 13 13:41 .xsession-errors
-rw------- 1 djwow djwow 1500 五月 13 13:26 .xsession-errors.old
djwow@ubuntu:~$ ll -a
total 160
drwxr-xr-x 18 djwow djwow 4096 五月 13 13:30 ./
drwxr-xr-x 3 root root 4096 三月 18 21:43 ../
-rw-rw-r-- 1 djwow djwow 41 六月 9 2015 attack_input
-rwxrwxrwx 1 djwow djwow 524 六月 9 2015 attack.sh*
-rw------- 1 djwow djwow 2314 五月 13 13:48 .bash_history
-rw-r--r-- 1 djwow djwow 220 三月 18 21:43 .bash_logout
-rw-r--r-- 1 djwow djwow 3771 三月 18 21:43 .bashrc
drwxrwxr-x 2 djwow djwow 4096 三月 18 22:28 BiZHi/
drwx------ 21 djwow djwow 4096 五月 13 13:42 .cache/
drwx------ 20 djwow djwow 4096 五月 13 13:32 .config/
drwxr-xr-x 3 djwow djwow 4096 三月 18 23:42 Desktop/
-rw-r--r-- 1 djwow djwow 25 三月 18 21:46 .dmrc
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Documents/
drwxr-xr-x 2 djwow djwow 4096 三月 18 23:41 Downloads/
drwx------ 3 djwow djwow 4096 五月 13 13:30 .gconf/
-rw-rw-r-- 1 djwow djwow 0 五月 13 11:14 hell.c
-rwxr-xr-x 1 root root 7360 三月 18 22:16 hello*
-rw-r--r-- 1 root root 123 三月 18 22:15 hello.c
-rw------- 1 djwow djwow 1908 五月 13 13:30 .ICEauthority
drwx------ 3 djwow djwow 4096 三月 18 21:46 .local/
drwx------ 4 djwow djwow 4096 三月 18 21:50 .mozilla/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Music/
-rw-r--r-- 1 djwow djwow 261 三月 18 22:03 .pam_environment
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Pictures/
drwx------ 3 djwow djwow 4096 三月 18 22:36 .pki/
-rw-r--r-- 1 djwow djwow 675 三月 18 21:43 .profile
drwxrwxr-x 2 djwow djwow 4096 三月 18 23:58 projects/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Public/
-rwxrwxrwx 1 djwow djwow 100 六月 9 2015 run.sh*
-rw-r--r-- 1 djwow djwow 0 三月 18 21:49 .sudo_as_admin_successful
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Templates/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Videos/
-rw------- 1 djwow djwow 4139 五月 13 11:14 .viminfo
-rwsrwxr-x 1 djwow djwow 7584 五月 13 11:04 vulp*
-rw-rw-r-- 1 djwow djwow 462 三月 18 23:54 vulp.c
-rw------- 1 djwow djwow 51 五月 13 13:30 .Xauthority
-rw-rw-r-- 1 djwow djwow 131 三月 18 21:47 .xinputrc
-rw------- 1 djwow djwow 292 五月 13 13:41 .xsession-errors
-rw------- 1 djwow djwow 1500 五月 13 13:26 .xsession-errors.old
djwow@ubuntu:~$ pwd
/home/djwow
djwow@ubuntu:~$ mkdir test
djwow@ubuntu:~$ cd tset/
bash: cd: tset/: No such file or directory
djwow@ubuntu:~$ pwd
/home/djwow
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public test vulp.c
attack.sh Documents hello Pictures run.sh Videos
BiZHi Downloads hello.c projects Templates vulp
djwow@ubuntu:~$ cd test/
djwow@ubuntu:~/test$ echo hello >1.txt
djwow@ubuntu:~/test$ ls
1.txt
djwow@ubuntu:~/test$ vim 1.txt
djwow@ubuntu:~/test$ rm -f 1.txt
djwow@ubuntu:~/test$ ls
djwow@ubuntu:~/test$ cd
djwow@ubuntu:~$ rm -fr test/
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ mkdir test
djwow@ubuntu:~$ cp hello test/
djwow@ubuntu:~$ cd test
djwow@ubuntu:~/test$ ls
hello
djwow@ubuntu:~/test$ cd
djwow@ubuntu:~$ rm -fr test
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ echo hello wolr>1.txt
djwow@ubuntu:~$ vim 1.txt
djwow@ubuntu:~$ echo lalala>>1.txt
djwow@ubuntu:~$ vim 1.txt
djwow@ubuntu:~$ rm -f 1.txt
djwow@ubuntu:~$ mv hello lalala
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello.c Pictures run.sh vulp
BiZHi Downloads lalala projects Templates vulp.c
djwow@ubuntu:~$ mov lalala hello
No command 'mov' found, did you mean:
Command 'mpv' from package 'mpv' (universe)
Command 'moc' from package 'qtchooser' (main)
Command 'mcv' from package 'scotch' (universe)
Command 'mmv' from package 'mmv' (universe)
Command 'mova' from package 'mova' (universe)
Command 'mon' from package 'mon' (universe)
Command 'mod' from package 'monodoc-base' (main)
Command 'mog' from package 'mazeofgalious' (universe)
Command 'mev' from package 'gpm' (universe)
Command 'mv' from package 'coreutils' (main)
mov: command not found
djwow@ubuntu:~$ mv lalala hello
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ ll
total 160
drwxr-xr-x 18 djwow djwow 4096 五月 13 13:56 ./
drwxr-xr-x 3 root root 4096 三月 18 21:43 ../
-rw-rw-r-- 1 djwow djwow 41 六月 9 2015 attack_input
-rwxrwxrwx 1 djwow djwow 524 六月 9 2015 attack.sh*
-rw------- 1 djwow djwow 2314 五月 13 13:48 .bash_history
-rw-r--r-- 1 djwow djwow 220 三月 18 21:43 .bash_logout
-rw-r--r-- 1 djwow djwow 3771 三月 18 21:43 .bashrc
drwxrwxr-x 2 djwow djwow 4096 三月 18 22:28 BiZHi/
drwx------ 21 djwow djwow 4096 五月 13 13:42 .cache/
drwx------ 20 djwow djwow 4096 五月 13 13:32 .config/
drwxr-xr-x 3 djwow djwow 4096 三月 18 23:42 Desktop/
-rw-r--r-- 1 djwow djwow 25 三月 18 21:46 .dmrc
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Documents/
drwxr-xr-x 2 djwow djwow 4096 三月 18 23:41 Downloads/
drwx------ 3 djwow djwow 4096 五月 13 13:30 .gconf/
-rw-rw-r-- 1 djwow djwow 0 五月 13 11:14 hell.c
-rwxr-xr-x 1 root root 7360 三月 18 22:16 hello*
-rw-r--r-- 1 root root 123 三月 18 22:15 hello.c
-rw------- 1 djwow djwow 1908 五月 13 13:30 .ICEauthority
drwx------ 3 djwow djwow 4096 三月 18 21:46 .local/
drwx------ 4 djwow djwow 4096 三月 18 21:50 .mozilla/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Music/
-rw-r--r-- 1 djwow djwow 261 三月 18 22:03 .pam_environment
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Pictures/
drwx------ 3 djwow djwow 4096 三月 18 22:36 .pki/
-rw-r--r-- 1 djwow djwow 675 三月 18 21:43 .profile
drwxrwxr-x 2 djwow djwow 4096 三月 18 23:58 projects/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Public/
-rwxrwxrwx 1 djwow djwow 100 六月 9 2015 run.sh*
-rw-r--r-- 1 djwow djwow 0 三月 18 21:49 .sudo_as_admin_successful
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Templates/
drwxr-xr-x 2 djwow djwow 4096 三月 18 21:46 Videos/
-rw------- 1 djwow djwow 4103 五月 13 13:55 .viminfo
-rwsrwxr-x 1 djwow djwow 7584 五月 13 11:04 vulp*
-rw-rw-r-- 1 djwow djwow 462 三月 18 23:54 vulp.c
-rw------- 1 djwow djwow 51 五月 13 13:30 .Xauthority
-rw-rw-r-- 1 djwow djwow 131 三月 18 21:47 .xinputrc
-rw------- 1 djwow djwow 292 五月 13 13:41 .xsession-errors
-rw------- 1 djwow djwow 1500 五月 13 13:26 .xsession-errors.old
djwow@ubuntu:~$ chown -r root:root vulp
chown: invalid option -- 'r'
Try 'chown --help' for more information.
djwow@ubuntu:~$ chown root:root vulp
chown: changing ownership of ‘vulp’: Operation not permitted
djwow@ubuntu:~$ sudo chown root:toot vulp
[sudo] password for djwow:
chown: invalid group: ‘root:toot’
djwow@ubuntu:~$ sudo chown root:root vulp
djwow@ubuntu:~$ ll vulp
-rwxrwxr-x 1 root root 7584 五月 13 11:04 vulp*
djwow@ubuntu:~$ sudo chown djwow:djwow vulp
djwow@ubuntu:~$ ll vulp
-rwxrwxr-x 1 djwow djwow 7584 五月 13 11:04 vulp*
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ chattr +i hello
chattr: Permission denied while setting flags on hello
djwow@ubuntu:~$ sudo chattr +i hello
djwow@ubuntu:~$ rm -f hello
rm: cannot remove ‘hello’: Operation not permitted
djwow@ubuntu:~$ sudo rm -f hello
rm: cannot remove ‘hello’: Operation not permitted
djwow@ubuntu:~$ chattr -i hello
chattr: Permission denied while setting flags on hello
djwow@ubuntu:~$ sudo chattr -i hello
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music Public Videos
attack.sh Documents hello Pictures run.sh vulp
BiZHi Downloads hello.c projects Templates vulp.c
djwow@ubuntu:~$ ll hello
-rwxr-xr-x 1 root root 7360 三月 18 22:16 hello*
djwow@ubuntu:~$ cp /etc/passwd ./
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music projects Templates vulp.c
attack.sh Documents hello passwd Public Videos
BiZHi Downloads hello.c Pictures run.sh vulp
djwow@ubuntu:~$ vim passwd
djwow@ubuntu:~$ find ~/ -name "*.c" -printf
find: missing argument to `-printf'
djwow@ubuntu:~$ find ~/ -name "*.c" -print
/home/djwow/vulp.c
/home/djwow/hello.c
/home/djwow/Desktop/8racecondition/vulp.c
/home/djwow/projects/vulp.c
/home/djwow/projects/changsave.c
/home/djwow/projects/hello.c
/home/djwow/hell.c
djwow@ubuntu:~$ pwd
/home/djwow
djwow@ubuntu:~$ find ~/ -name "*.c" -print | xargs grep hello
/home/djwow/hello.c: printf("hello vim!--%d\n",add(1,2));
/home/djwow/projects/hello.c: printf("hello ubuntu\n");
djwow@ubuntu:~$ find /usr/src/linux/include/ -name "*.h" | xargs grep "daemonize"
find: `/usr/src/linux/include/': No such file or directory
djwow@ubuntu:~$ which hello
djwow@ubuntu:~$ whick passwd
No command 'whick' found, did you mean:
Command 'which' from package 'debianutils' (main)
whick: command not found
djwow@ubuntu:~$ which passwd
/usr/bin/passwd
djwow@ubuntu:~$ ls
attack_input Desktop hell.c Music projects Templates vulp.c
attack.sh Documents hello passwd Public Videos
BiZHi Downloads hello.c Pictures run.sh vulp
djwow@ubuntu:~$ vim 1.txt
djwow@ubuntu:~$ cat 1.txt
hello commment!
djwow@ubuntu:~$ more passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false
systemd-bus-proxy:x:103:106:systemd Bus Proxy,,,:/run/systemd:/bin/false
syslog:x:104:109::/home/syslog:/bin/false
messagebus:x:105:110::/var/run/dbus:/bin/false
uuidd:x:106:111::/run/uuidd:/bin/false
avahi:x:107:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
whoopsie:x:108:115::/nonexistent:/bin/false
avahi-autoipd:x:109:118:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
dnsmasq:x:110:65534:dnsmasq,,,:/var/lib/misc:/bin/false
colord:x:111:121:colord colour management daemon,,,:/var/lib/colord:/bin/false

...back 1 page
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false

...back 1 page
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false

...back 1 page
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false

...back 1 page
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false
--More--(50%)
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologi
n
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/fal
se
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/
false

...skipping 1 line
systemd-bus-proxy:x:103:106:systemd Bus Proxy,,,:/run/systemd:/bin/false
syslog:x:104:109::/home/syslog:/bin/false
messagebus:x:105:110::/var/run/dbus:/bin/false
uuidd:x:106:111::/run/uuidd:/bin/false
avahi:x:107:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
whoopsie:x:108:115::/nonexistent:/bin/false
avahi-autoipd:x:109:118:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
dnsmasq:x:110:65534:dnsmasq,,,:/var/lib/misc:/bin/false
colord:x:111:121:colord colour management daemon,,,:/var/lib/colord:/bin/false
speech-dispatcher:x:112:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/
false
hplip:x:113:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kernoops:x:114:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:115:122ulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:116:124:RealtimeKit,,,:/proc:/bin/false
saned:x:117:125::/var/lib/saned:/bin/false
usbmux:x:118:46:usbmux daemon,,,:/var/lib/usbmux:/bin/false
lightdm:x:119:126ight Display Manager:/var/lib/lightdm:/bin/false
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
djwow@ubuntu:~$ less passwd
djwow@ubuntu:~$ head passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
djwow@ubuntu:~$ tail passwd
colord:x:111:121:colord colour management daemon,,,:/var/lib/colord:/bin/false
speech-dispatcher:x:112:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/false
hplip:x:113:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kernoops:x:114:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:115:122ulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:116:124:RealtimeKit,,,:/proc:/bin/false
saned:x:117:125::/var/lib/saned:/bin/false
usbmux:x:118:46:usbmux daemon,,,:/var/lib/usbmux:/bin/false
lightdm:x:119:126ight Display Manager:/var/lib/lightdm:/bin/false
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
djwow@ubuntu:~$ tail -f
tail: warning: following standard input indefinitely is ineffective
q
q




qqq

q
w
qw

e
qw
^C
djwow@ubuntu:~$ tail -f passwd
speech-dispatcher:x:112:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/false
hplip:x:113:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kernoops:x:114:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:115:122ulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:116:124:RealtimeKit,,,:/proc:/bin/false
saned:x:117:125::/var/lib/saned:/bin/false
usbmux:x:118:46:usbmux daemon,,,:/var/lib/usbmux:/bin/false
lightdm:x:119:126ight Display Manager:/var/lib/lightdm:/bin/false
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
hello
hellowolrd
^C
djwow@ubuntu:~$ vim /etc/passwd
djwow@ubuntu:~$ cat passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/false
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false
systemd-bus-proxy:x:103:106:systemd Bus Proxy,,,:/run/systemd:/bin/false
syslog:x:104:109::/home/syslog:/bin/false
messagebus:x:105:110::/var/run/dbus:/bin/false
uuidd:x:106:111::/run/uuidd:/bin/false
avahi:x:107:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
whoopsie:x:108:115::/nonexistent:/bin/false
avahi-autoipd:x:109:118:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
dnsmasq:x:110:65534:dnsmasq,,,:/var/lib/misc:/bin/false
colord:x:111:121:colord colour management daemon,,,:/var/lib/colord:/bin/false
speech-dispatcher:x:112:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/false
hplip:x:113:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kernoops:x:114:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:115:122ulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:116:124:RealtimeKit,,,:/proc:/bin/false
saned:x:117:125::/var/lib/saned:/bin/false
usbmux:x:118:46:usbmux daemon,,,:/var/lib/usbmux:/bin/false
lightdm:x:119:126ight Display Manager:/var/lib/lightdm:/bin/false
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
hello
hellowolrd
djwow@ubuntu:~$ ls
1.txt BiZHi Downloads hello.c Pictures run.sh vulp
attack_input Desktop hell.c Music projects Templates vulp.c
attack.sh Documents hello passwd Public Videos
djwow@ubuntu:~$ cd projects/
djwow@ubuntu:~/projects$ du -sh
40K .
djwow@ubuntu:~/projects$ du -h
40K .
djwow@ubuntu:~/projects$ ls
a.out changsave.c hello hello.c vulp vulp.c
djwow@ubuntu:~/projects$ du -h hello
8.0K hello
djwow@ubuntu:~/projects$ du -h
40K .
djwow@ubuntu:~/projects$ df -h
Filesystem Size Used Avail Use% Mounted on
udev 989M 0 989M 0% /dev
tmpfs 202M 5.4M 197M 3% /run
/dev/sda1 19G 4.0G 14G 23% /
tmpfs 1007M 156K 1007M 1% /dev/shm
tmpfs 5.0M 4.0K 5.0M 1% /run/lock
tmpfs 1007M 0 1007M 0% /sys/fs/cgroup
cgmfs 100K 0 100K 0% /run/cgmanager/fs
tmpfs 202M 80K 202M 1% /run/user/1000
/dev/fd0 1.4M 8.0K 1.4M 1% /media/floppy0
/dev/sr2 49M 49M 0 100% /media/djwow/CDROM
//192.168.0.111/8LinuxR3 200G 86G 115G 43% /mnt
djwow@ubuntu:~/projects$ cd
djwow@ubuntu:~$ zip -r test.zip hello
adding: hello (deflated 67%)
djwow@ubuntu:~$ ls
1.txt BiZHi Downloads hello.c Pictures run.sh Videos
attack_input Desktop hell.c Music projects Templates vulp
attack.sh Documents hello passwd Public test.zip vulp.c
djwow@ubuntu:~$ .zip unzip test.zip
No command '.zip' found, did you mean:
Command 'xzip' from package 'xzip' (universe)
Command 'mzip' from package 'mtools' (main)
Command 'lzip' from package 'lzd' (universe)
Command 'lzip' from package 'plzip' (universe)
Command 'lzip' from package 'clzip' (universe)
Command 'lzip' from package 'lzip' (universe)
Command 'lzip' from package 'minilzip' (universe)
Command 'lzip' from package 'lunzip' (universe)
Command 'lzip' from package 'pdlzip' (universe)
Command 'lzip' from package 'lziprecover' (universe)
Command 'wzip' from package 'wzip' (universe)
Command 'rzip' from package 'rzip' (universe)
Command 'zip' from package 'zip' (main)
Command 'jzip' from package 'jzip' (universe)
Command 'gzip' from package 'gzip' (main)
.zip: command not found
djwow@ubuntu:~$ mkdir test
djwow@ubuntu:~$ cp test.zip ./test
djwow@ubuntu:~$ cd test
djwow@ubuntu:~/test$ ls
test.zip
djwow@ubuntu:~/test$ .zip unzip test.zip
No command '.zip' found, did you mean:
Command 'lzip' from package 'lzd' (universe)
Command 'lzip' from package 'plzip' (universe)
Command 'lzip' from package 'lzip' (universe)
Command 'lzip' from package 'pdlzip' (universe)
Command 'lzip' from package 'lunzip' (universe)
Command 'lzip' from package 'lziprecover' (universe)
Command 'lzip' from package 'clzip' (universe)
Command 'lzip' from package 'minilzip' (universe)
Command 'zip' from package 'zip' (main)
Command 'rzip' from package 'rzip' (universe)
Command 'jzip' from package 'jzip' (universe)
Command 'wzip' from package 'wzip' (universe)
Command 'xzip' from package 'xzip' (universe)
Command 'mzip' from package 'mtools' (main)
Command 'gzip' from package 'gzip' (main)
.zip: command not found
djwow@ubuntu:~/test$ ls
test.zip
djwow@ubuntu:~/test$ unzip test.zip
Archive: test.zip
inflating: hello
djwow@ubuntu:~/test$ ls
hello test.zip
djwow@ubuntu:~/test$ sed -n '3,10'p passwd
sed: can't read passwd: No such file or directory
djwow@ubuntu:~/test$ cd
djwow@ubuntu:~$ sed -n '3,10'p passwd
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
djwow@ubuntu:~$ sed -n '/root'p passwd
sed: -e expression #1, char 6: unterminated address regex
djwow@ubuntu:~$ sed -n '/root/'p passwd
root:x:0:0:root:/root:/bin/bash
djwow@ubuntu:~$ sed -n '/djwow/'p passwd
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
djwow@ubuntu:~$ sed -n '/bin/'p passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
lp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin
mail:x:8:8:mail:/var/mail:/usr/sbin/nologin
news:x:9:9:news:/var/spool/news:/usr/sbin/nologin
uucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin
proxy:x:13:13:proxy:/bin:/usr/sbin/nologin
www-data:x:33:33:www-data:/var/www:/usr/sbin/nologin
backup:x:34:34:backup:/var/backups:/usr/sbin/nologin
list:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin
irc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin
gnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin
nobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin
systemd-timesync:x:100:103:systemd Time Synchronization,,,:/run/systemd:/bin/false
systemd-network:x:101:104:systemd Network Management,,,:/run/systemd/netif:/bin/false
systemd-resolve:x:102:105:systemd Resolver,,,:/run/systemd/resolve:/bin/false
systemd-bus-proxy:x:103:106:systemd Bus Proxy,,,:/run/systemd:/bin/false
syslog:x:104:109::/home/syslog:/bin/false
messagebus:x:105:110::/var/run/dbus:/bin/false
uuidd:x:106:111::/run/uuidd:/bin/false
avahi:x:107:114:Avahi mDNS daemon,,,:/var/run/avahi-daemon:/bin/false
whoopsie:x:108:115::/nonexistent:/bin/false
avahi-autoipd:x:109:118:Avahi autoip daemon,,,:/var/lib/avahi-autoipd:/bin/false
dnsmasq:x:110:65534:dnsmasq,,,:/var/lib/misc:/bin/false
colord:x:111:121:colord colour management daemon,,,:/var/lib/colord:/bin/false
speech-dispatcher:x:112:29:Speech Dispatcher,,,:/var/run/speech-dispatcher:/bin/false
hplip:x:113:7:HPLIP system user,,,:/var/run/hplip:/bin/false
kernoops:x:114:65534:Kernel Oops Tracking Daemon,,,:/:/bin/false
pulse:x:115:122ulseAudio daemon,,,:/var/run/pulse:/bin/false
rtkit:x:116:124:RealtimeKit,,,:/proc:/bin/false
saned:x:117:125::/var/lib/saned:/bin/false
usbmux:x:118:46:usbmux daemon,,,:/var/lib/usbmux:/bin/false
lightdm:x:119:126ight Display Manager:/var/lib/lightdm:/bin/false
djwow:x:1000:1000:ZhuHuiBeiShaDiao,,,:/home/djwow:/bin/bash
djwow@ubuntu:~$ find /test/ -name "*.c" | xargs grep "main"
find: `/test/': No such file or directory
djwow@ubuntu:~$ ls
1.txt Desktop hello Pictures Templates vulp
attack_input Documents hello.c projects test vulp.c
attack.sh Downloads Music Public test.zip
BiZHi hell.c passwd run.sh Videos
djwow@ubuntu:~$ find /usr/test
find: `/usr/test': No such file or directory
djwow@ubuntu:~$ find /home/djwow/test/ -name "*.c" | xargs grepp "main"
xargs: grepp: No such file or directory
djwow@ubuntu:~$ cd test
djwow@ubuntu:~/test$ ls
hello test.zip
djwow@ubuntu:~/test$ vim hello.c
djwow@ubuntu:~/test$ ls
hello hello.c test.zip
djwow@ubuntu:~/test$ cd
djwow@ubuntu:~$ find /home/djwow/test/ -name "*.c" | xargs grepp "main"
xargs: grepp: No such file or directory
djwow@ubuntu:~$ find ~/test/ name "*.c" | xargs grep "main"
find: `name': No such file or directory
find: `*.c': No such file or directory
grep: /home/djwow/test/: Is a directory
/home/djwow/test/hello.c:void main()
Binary file /home/djwow/test/hello matches
djwow@ubuntu:~$ find ~/test/ -name "*.c" | xargs grep "main"
void main()
djwow@ubuntu:~$ find /mnt/ -name "*.txt" | xargs grep "ps"
djwow@ubuntu:~$ find /mnt/ -name "*.txt" | xargs grep "ps"
djwow@ubuntu:~$ find /mnt/ -name "*.txt" | xargs grep "sudo"
djwow@ubuntu:~$ find /mnt/2second-command/ -name "*.txt" | xagrs grep "sudo"
No command 'xagrs' found, did you mean:
Command 'xargs' from package 'findutils' (main)
xagrs: command not found
djwow@ubuntu:~$ find /mnt/2second-command/ -name "*.txt" | xargs grep "sudo"
djwow@ubuntu:~$ find /mnt/2second-command/ -name "*.txt" | xargs grep "awk"
djwow@ubuntu:~$ cp /mnt/2second-command/linux-command.txt ./
djwow@ubuntu:~$ ls
1.txt Desktop hello passwd run.sh Videos
attack_input Documents hello.c Pictures Templates vulp
attack.sh Downloads linux-command.txt projects test vulp.c
BiZHi hell.c Music Public test.zip
djwow@ubuntu:~$ find ./ -name "*.txt" | xargs grep "sudo"
djwow@ubuntu:~$ find ~/ -name "*.txt" | xargs grep "sudo"
djwow@ubuntu:~$ vim linux-command.txt
djwow@ubuntu:~$ find ~/ -name "*.txt" -print | xargs grep "sudo"
djwow@ubuntu:~$ find ~/ -name "*.txt" -print | xargs grep sudo
djwow@ubuntu:~$ find ~/-name "*.c" -print | xargs grep main
find: `/home/djwow/-name': No such file or directory
find: `*.c': No such file or directory
djwow@ubuntu:~$ find ~/ -name "*.c" -print | xargs grep main
/home/djwow/test/hello.c:void main()
/home/djwow/vulp.c:int main()
/home/djwow/hello.c:int main()
/home/djwow/Desktop/8racecondition/vulp.c:int main()
/home/djwow/projects/vulp.c:int main()
/home/djwow/projects/changsave.c:void main()
/home/djwow/projects/hello.c:int main()
djwow@ubuntu:~$ find ~/ -name "linux-command.txt" -print | xargs grep sudo
djwow@ubuntu:~$ sed -n 'sudo'p ./
sed: -e expression #1, char 5: unterminated `s' command
djwow@ubuntu:~$ sed -n 'sudo'p ./linux-command.txt
sed: -e expression #1, char 5: unterminated `s' command
djwow@ubuntu:~$ sed -n 'root' ./linux-command.txt
djwow@ubuntu:~$ cat linux-command.txt
???e?N?vsQ}T?N

man less??g
wless?v.^?RKb?Q --help
sudo cat /etc/passwd:sudo(u?N???_ROOTCgP?
N(u?wS?ROOT?[x ??S
/etc/sudoers M?nsudoCgP?

cd:Rbc?vU_
cd ~:Rbc0R/home/zyr/
N&^?NHN??
?_N/fRbc0R???]?vhome?vU_0
cd -:Rbc0RKNMR?v?vU_

history:?L?}T?N?v?S?S
pwd:S_MR?vU_

ls:?{??>f:y?e?N
ls -a:>f:y??υ?e?N
ls -l:
ll:Rh?>f:y?e?N (W~/.bashrc-N?alias ll='ls -l'
ll -a:Rh?>f:y?e?N
?S+T??υ?e?N

zyr@ubuntu:~$ ll 1.txt
- rw- r-- r-- 1 zyr zyr 6 2015-05-25 21:56 1.txt

-:nf??e?N
d:?vU_
l:???c
b:WW??Y?e?N
c:W[&{??Y
s:WY?cW[?e?N

user:groupther?v^\'`
r:??-4
?w:?Q-2
?x:gbL?-1


1?h?:y`S(u?vi?~?ppe

zyr:user
zyr:group

6:?e?N'Y\

R?^b?O9e?eg

TW[


echo hello > 1.txt
echo world >>1.txt

mkdir test:R?^test?vU_
rm -f 1.txt: Rd?N*N?e?N
N(u???? ?
rm -fr test? Rd?N*N?e?N9Y
cp a b:?b??e?N
T?e?Na:Nb


chown [-R] zyr:zyr 1.txt:?b1.txt?e?N9e:N(u7bzyr
??~?zyr

chmod 777 1.txt:?b1.txt??n:Nrwx rwx rwx
chmod 666 1.txt:?b1.txt??n:Nrw- rw- rw-

chmod u=rwx,og=rx 1.txt:\user??n:Nrwx,group,other??n:Nrx
chmod a+x 1.txt?\@b g?v?R
NgbL?
chmod u-x 1.txt:\user?S?mgbL?CgP?
chmod u+s 1.txt:\1.txt??n:_6RMO u-s?S?m set-uid


T]attr [+-=][ASaci [?e?Nb??vU_
+-= ?R+R:N?X?R0?Q\0???[
A??X?R??^\'`T
N?S???O9e? ??e?Nb?vU_?vatime\
S??X?R??^\'`T
?O\penc
Tek?QeQ?x?v-N?
a??X?R??^\'`T
N?? Rd? ??S?????R
N?????[??^\'`?u7b
c??R?S)勇e?N
????S?eO?R?S?
i??X?RT
T0???[??c0?QeQ0?e?Xpenc?

N???? Rd?I{.txt?勇e?N
lsattr 1.txt

ln -s /src/path/to/file lnfile:\/src/path/to/file ?^?zN*N&{?S???clnfile

find ~/ -name "*.txt" -print
find ~/ -name "*.txt" -print | xargs grep hello
find /usr/src/linux/include/ -name "*.h" | xargs grep "daemonize"

which passwd:~b0Rpasswd?v_

cat:hQ萓??Q
more: cgq?k?O?N>f:y?e,g
?O cgq~vR?kJT?>f:y?NY\?Q?[?N
?ctrl b/ctrl f?S?N?nO\
N??>f:yiRYO~vR?k
??S(u?ǐ 0page down0 0page up0
N?
N?u??g
w?]?~>f:y?Q?v?Q?[
?
NwQY0?S?N?ǐ"/" "?"eg?g~b?Q?[e
head:>f:y4Y萄v?Q?[MR10L?
tail:>f:y>\??10L?
N?e?v>f:yg?epenc

?{S??
man less | less



(u7b?{t?

/etc/passwd?e?N?~?g?
T:?[?x?f?N?N,US?r>e(W?N/etc/shadow? ?:uid(0:Nroot,1-499?OYu
?500_?Y:Nnf? ?:gid(/etc/group??[?^ ?:comment(name,phone,address):homepath:shell(/sbin/nologin:N?ybk??(u7b{vU_ ?

/etc/shadow?e?N?~?g?
T??[x?
N!k?O9e?[x?eg??y1970-1-1?ǐY\?e??Mb???O9e?[x
????0??[x0Rg?e??
Nǐg??[x0RgMRf?JT ?99999MO
??Y7)YMR?1YHegP??u}ThTg


groupadd [-g gid] groupname
useradd [-u uid] [-g gid] [-d home] [-s /bin/bash] username
passwd username
passwd

userdel username

du -sh:R?Q?e?N9Y'Y\;`?T
du -h:R?QTy?'Y\

df -h:R?QT*N?x?vO(u?`?Q


?S)?

?S)SbS?
tar zvcf xx.tar.gz xx
tar cvf xxx.tar xxx/ xz  z xxx.tar??xxx.tar.xz
zip -r test.zip ./*

?S?
.tar.gz? tar zvxf xxx.tar.gz
.tar.Z? tar zvxf xxx.tar.Z
.tgz? tar zvxf xxx.tar.tgz
.bz2? bunzip2 xxx.bz2
.tar.bz2: tar jvxf xxx.tar.bz2
.tar.xz: xz d xxx.tar.xz tar xvf xxx.tar
.zip: unzip xxx.zip
.tar? tar xf xxx.tar

o??N?[ň?
1)ubuntu:
sudo apt-get install xxx
sudo apt-get remove xxx
sudo apt-get update xxx


bc?n?
sudo cp /etc/apt/sources.list /etc/apt/sources.list_backup?h?:yY?NRh? ?
sudo vim /etc/apt/sources.list

deb http://us.archive.ubuntu.com/ubuntu/ lucid multiverse
deb-src http://us.archive.ubuntu.com/ubuntu/ lucid multiverse

http://us.archive.ubuntu.com/ubuntu/dists/lucid/multiverse/

?kNL??v_4Y/fdebb?deb-src
?R+Rh?:y?v?c?ǐ.deb?e?N?L??[ň?T?ǐ?n?e?N?v?e_?L??[ň0

debb?deb-srcW[?kKNT
?/fN?kURL
?KNT/f?N*N(uzz<h??_?vW[&{2N
?R+R?[?^?v?^?v?vU_?~?g0(WOm?hV-N??eQhttp://archive.ubuntu.com/ubuntu/
?v^?eQdists?vU_
??S?N?S?s g5*N?vU_?TMR??sources.list?e?N-N?v,{ NRW[?k?v?[?^0?N ?vQ-NN*N?vU_?eQ
??S?N
w0R?Tsources.listT?VR?v?[?^?v?vU_?~?g0

mirrors.aliyun.com
http://mirrors.aliyun.com/ubuntu/

sudo yum install package -->federo/redhat?[ňo??N


2)package?[ň?
1 ?
N}?N*Ndeb<h_?vo??Nkismet

curl https://www.kismetwireless.net/code/dists/quantal/kismet/binary-i386/kismet-2011.03.2.i386.deb > kismet-2011.03.2.i386.deb

2 ??[ňkismet

dpkg -i kismet-2011.03.2.i386.deb

3)?n?Nx?[ň?

./configure --prefix=?[ň_
make
sudo make install

ckR_? cL??d\O grep, sed, awk

grep hello x.txt:?Nx.txt-N~bhello?vL?
find ~/ -name "*.txt" -print | xargs grep hello
find /usr/src/linux/include/ -name "*.h" | xargs grep "daemonize"

sed -n '3,10'p test.txt ?SbpStest.txt-N?v30R10L?
sed -n '/root/'p /etc/passwd ?SbpSS+Troot?vL?
awk -F':' 'NR>20' test.txt SbpStest.txt-N'Y?N20?vL?
?-Fc?[':':N?kL?-N?vW[?k?vR??Nc?[???:Nzz<hb?TAB0$0:NteL?
?$1:N,{N*NW[?k
?$2:N,{?N*NW[?k
?~`N???
1. (uawk SbpSte*Ntest.txt??N
N?d\O??/f(uawk?]wQ?[?s
????[test.txt ??
1. awk '{print $0}' test.txt
2. ?g~b@b gS+T bash ?vL??
2. awk '/bash/' test.txt
3. (u : \O:NR??&{
??g~b,{ N?kI{?N0?vL??
3. awk -F':' '$3=="0"' test.txt
4. (u : \O:NR??&{
??g~b,{N?k:N root ?vL?
?v^?b勵k?v root bcb toor (?S?N?
TsedNw?O(u)?
4. awk -F':' '$1=="root"' test.txt |sed 's/root/toor/'
5. (u : \O:NR??&{
?SbpSgTN?k?
5. awk -F':' '{print $NF}' test.txt
6. SbpSL?pe'Y?N20?v@b gL??
6. awk -F':' 'NR>20' test.txt
7. (u : \O:NR??&{
?SbpS@b g,{ N?k\?N,{?V?k?vL??
7. awk -F':' '$3<$4' test.txt
8. (u : \O:NR??&{
?SbpS,{N?k?N?SgTN?k
?v^N-N??(u @ ??c??O?Y
?,{NL??^??/f?7h?vb__  root@/bin/bash ?
8. awk -F':' '{print $1"@"$NF}' test.txt
9. (u : \O:NR??&{
??bte*N?ech?v,{?V?k?v?R
?Bl?T?
9. awk -F':' '{(sum+=$4)}; END {print sum}' test.txt
10.@g?cnginx?
z?
10.sudo kill -KILL `ps aux | grep nginx| awk '{print $2}'`

sudo kill -9 `ps aux | grep firefox| awk '{print $2}'`

sudo kill -9 pid
?
zQ?~?
cat /proc/meminfo |grep Mem:?g
w?QX[
cat /proc/cpuinfo

top
free
ps aux |less
ab g(u7b?
z
uu7b:N;N?v<h_>f:y
xb g
z?^

USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND

VSZ?r??
zO(u?vZ??bgQX[?KB ?
RSS?r?2?
z`S(u?v?V?[gQX[?KB ?{?Yu-Nu??vpe? ?
STAT?STAT>f:y?N?
zS_MR?v?r`"S":?
zY(Waw w?r`

sudo kill -9 pid

netstat -anp:a,@b g ?y?
?Nh?:ypeW[>f:y
?Ph?:y?
z

ifconfig

iptables
sudo iptables -A OUTPUT -p tcp --dport 80 -j DROP
<h_?iptables [-t table] COMMAND chain CRETIRIA -j ACTION
sudo iptables -A OUTPUT -p tcp --dport 80 -j DROP ?ybk????80?z?S
sudo iptables -L -n -v --line-numbers
sudo iptables -D OUTPUT 1


vim ~/.profile
EDITOR=vim;export EDITOR
source ~/.profile

crontab  e/l/r
-e???
*00*00*00*00*00command
R0?e0?eg0hT0}T?N

30 21 * * * /usr/local/etc/rc.d/lighttpd restart

Nb??v?OP[h?:y?kZf?v21:30?/Tapache0
45 4 1,10,22 * * /usr/local/etc/rc.d/lighttpd restart

Nb??v?OP[h?:y?g1010022?e?v4 : 45?/Tapache0

-l?R?Q
-r? Rd?

scp
scp?/home/daisy/full.tar.gz zyr@172.19.2.75:/home/zyr a-->b
scp?zyr@172.19.2.75:/home/zyr/full.tar.gz?/home/daisy/full.tar.gz
ssh/xshell ?[7b?z
wget http://www.mallocfree.com/data/pretalk.rar


nohup wget url & ??}T?N?S?N(W`O??Q^7b/sQ???~?zKNT?~?~?L??v?^?v?
z0
nohup wget http://www.mallocfree.com/data/pretalk.rar &
sQ:gv^?/T(u?sudo shutdown -r now
sQ:g ?e5u?sudo shutdown -h now

panic???{:g root
N?echo "c" > /proc/sysrq-trigger

?zsS?/T???{:g root
N?echo "b" > /proc/sysrq-trigger

?zsSsQ???{:g root
N?echo "o" > /proc/sysrq-trigger


?~?z?ALT+CTRL+F1 VM?ALT+CTRL+zz<h ALT+CTRL+F1
UI?ALT+CTRL+F7 VM?ALT+CTRL+zz<h ALT+CTRL+F7





































djwow@ubuntu:~$ :q
:q: command not found
djwow@ubuntu:~$ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.2 23836 4884 ? Ss 13:29 0:01 /sbin/init auto
root 2 0.0 0.0 0 0 ? S 13:29 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/0]
root 5 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:0H]
root 7 0.1 0.0 0 0 ? S 13:29 0:04 [rcu_sched]
root 8 0.0 0.0 0 0 ? S 13:29 0:00 [rcu_bh]
root 9 0.0 0.0 0 0 ? S 13:29 0:00 [migration/0]
root 10 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/0]
root 11 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/1]
root 12 0.0 0.0 0 0 ? S 13:29 0:00 [migration/1]
root 13 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/1]
root 15 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/1:0H]
root 16 0.0 0.0 0 0 ? S< 13:29 0:00 [khelper]
root 17 0.0 0.0 0 0 ? S 13:29 0:00 [kdevtmpfs]
root 18 0.0 0.0 0 0 ? S< 13:29 0:00 [netns]
root 19 0.0 0.0 0 0 ? S< 13:29 0:00 [perf]
root 20 0.0 0.0 0 0 ? S 13:29 0:00 [khungtaskd]
root 21 0.0 0.0 0 0 ? S< 13:29 0:00 [writeback]
root 22 0.0 0.0 0 0 ? SN 13:29 0:00 [ksmd]
root 23 0.0 0.0 0 0 ? SN 13:29 0:00 [khugepaged]
root 24 0.0 0.0 0 0 ? S< 13:29 0:00 [crypto]
root 25 0.0 0.0 0 0 ? S< 13:29 0:00 [kintegrityd]
root 26 0.0 0.0 0 0 ? S< 13:29 0:00 [bioset]
root 27 0.0 0.0 0 0 ? S< 13:29 0:00 [kblockd]
root 28 0.0 0.0 0 0 ? S< 13:29 0:00 [ata_sff]
root 29 0.0 0.0 0 0 ? S< 13:29 0:00 [md]
root 30 0.0 0.0 0 0 ? S< 13:29 0:00 [devfreq_wq]
root 35 0.0 0.0 0 0 ? S 13:29 0:00 [kswapd0]
root 36 0.0 0.0 0 0 ? S 13:29 0:00 [fsnotify_mark]
root 37 0.0 0.0 0 0 ? S 13:29 0:00 [ecryptfs-kthre
root 48 0.0 0.0 0 0 ? S< 13:29 0:00 [kthrotld]
root 49 0.0 0.0 0 0 ? S< 13:29 0:00 [acpi_thermal_p
root 51 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_0]
root 52 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_0]
root 53 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_1]
root 54 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_1]
root 56 0.0 0.0 0 0 ? S< 13:29 0:00 [ipv6_addrconf]
root 77 0.0 0.0 0 0 ? S< 13:29 0:00 [deferwq]
root 78 0.0 0.0 0 0 ? S< 13:29 0:00 [charger_manage
root 118 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt_poll_0]
root 119 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt/0]
root 120 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_2]
root 121 0.0 0.0 0 0 ? S< 13:29 0:00 [kpsmoused]
root 122 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_2]
root 123 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_3]
root 124 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_3]
root 125 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_4]
root 126 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_4]
root 127 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_5]
root 128 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_5]
root 129 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_6]
root 130 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_6]
root 131 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_7]
root 132 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_7]
root 133 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_8]
root 134 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_8]
root 135 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_9]
root 136 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_9]
root 137 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_10]
root 138 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_10]
root 139 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_11]
root 140 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_11]
root 141 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_12]
root 142 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_12]
root 143 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_13]
root 144 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_13]
root 145 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_14]
root 146 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_14]
root 147 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_15]
root 148 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_15]
root 149 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_16]
root 150 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_16]
root 151 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_17]
root 152 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_17]
root 153 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_18]
root 154 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_18]
root 155 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_19]
root 156 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_19]
root 157 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_20]
root 158 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_20]
root 159 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_21]
root 160 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_21]
root 161 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_22]
root 162 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_22]
root 163 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_23]
root 164 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_23]
root 165 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_24]
root 166 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_24]
root 167 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_25]
root 168 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_25]
root 169 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_26]
root 170 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_26]
root 171 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_27]
root 172 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_27]
root 173 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_28]
root 174 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_28]
root 175 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_29]
root 176 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_29]
root 177 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_30]
root 178 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_30]
root 179 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_31]
root 180 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_31]
root 207 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_32]
root 208 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_32]
root 209 0.0 0.0 0 0 ? S< 13:29 0:00 [ttm_swap]
root 238 0.0 0.0 0 0 ? S 13:29 0:00 [jbd2/sda1-8]
root 239 0.0 0.0 0 0 ? S< 13:29 0:00 [ext4-rsv-conve
root 274 0.0 0.0 0 0 ? S 13:29 0:00 [kauditd]
root 296 0.0 0.2 8664 4784 ? Ss 13:29 0:00 /lib/systemd/sy
root 300 0.0 0.2 15780 5620 ? Ss 13:29 0:00 /lib/systemd/sy
syslog 593 0.0 0.1 31644 3116 ? Ssl 13:29 0:00 /usr/sbin/rsysl
root 596 0.0 0.3 52884 7900 ? Ssl 13:29 0:00 /usr/sbin/therm
root 598 0.0 0.4 43628 8268 ? Ssl 13:29 0:00 /usr/lib/accoun
root 599 0.0 0.1 4184 3036 ? Ss 13:29 0:00 /lib/systemd/sy
root 603 0.0 0.3 42272 8084 ? Ssl 13:29 0:00 /usr/sbin/Modem
whoopsie 606 0.0 0.5 51204 11260 ? Ssl 13:29 0:00 /usr/bin/whoops
root 607 0.0 0.3 14460 6740 ? Ss 13:29 0:00 /usr/sbin/cupsd
root 609 0.0 0.1 7060 2880 ? Ss 13:29 0:00 /usr/sbin/cron
root 615 0.1 0.9 88780 20076 ? Ssl 13:29 0:06 /usr/sbin/Netwo
root 620 0.0 0.1 4712 2552 ? Ss 13:29 0:00 /sbin/cgmanager
message+ 622 0.0 0.2 6900 4748 ? Ss 13:29 0:00 /usr/bin/dbus-d
root 655 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:1H]
avahi 663 0.0 0.1 5292 3132 ? Ss 13:29 0:01 avahi-daemon: r
lp 664 0.0 0.2 10288 4940 ? S 13:29 0:00 /usr/lib/cups/n
avahi 665 0.0 0.0 5292 272 ? S 13:29 0:00 avahi-daemon: c
root 677 0.0 0.4 37156 8872 ? Ssl 13:29 0:00 /usr/sbin/cups-
root 678 0.0 0.4 43732 9516 ? Ssl 13:29 0:00 /usr/lib/policy
kernoops 699 0.0 0.0 8848 308 ? Ss 13:29 0:00 /usr/sbin/kerne
root 705 0.0 0.0 4744 1960 tty1 Ss+ 13:29 0:00 /sbin/agetty --
root 706 0.0 0.2 9732 4572 ? Ss 13:29 0:00 /sbin/wpa_suppl
root 709 0.0 0.3 9276 7888 ? S 13:29 0:00 /sbin/dhclient
nobody 719 0.0 0.1 9956 3964 ? S 13:29 0:00 /usr/sbin/dnsma
root 776 0.0 0.4 46776 9652 ? SLsl 13:29 0:00 /usr/sbin/light
root 826 1.6 3.5 331584 73680 tty7 Ss+ 13:29 1:02 /usr/bin/X -cor
root 999 0.0 0.0 0 0 ? S< 13:30 0:00 [kworker/1:1H]
rtkit 1068 0.0 0.1 23160 2884 ? SNsl 13:30 0:00 /usr/lib/rtkit/
root 1090 0.0 0.4 73584 9400 ? Ssl 13:30 0:00 /usr/lib/upower
colord 1105 0.0 0.5 46032 11772 ? Ssl 13:30 0:00 /usr/lib/colord
root 1116 0.0 0.2 27896 6016 ? Sl 13:30 0:00 lightdm --sessi
djwow 1125 0.0 0.2 6320 4772 ? Ss 13:30 0:00 /lib/systemd/sy
djwow 1126 0.0 0.0 7384 1208 ? S 13:30 0:00 (sd-pam)
djwow 1132 0.0 0.4 53500 9336 ? Sl 13:30 0:00 /usr/bin/gnome-
djwow 1134 0.0 0.2 9256 4212 ? Ss 13:30 0:00 /sbin/upstart -
djwow 1214 0.0 0.0 8288 220 ? S 13:30 0:00 upstart-udev-br
djwow 1220 0.0 0.1 6816 4028 ? Ss 13:30 0:02 dbus-daemon --f
djwow 1231 0.0 0.4 47028 8960 ? Ss 13:30 0:00 /usr/lib/i386-l
djwow 1245 0.2 0.4 50076 9676 ? Ssl 13:30 0:10 /usr/bin/ibus-d
djwow 1250 0.0 0.2 39508 5464 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1255 0.0 0.2 53968 5704 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1267 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1269 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1278 0.0 0.0 8516 296 ? S 13:30 0:00 upstart-file-br
djwow 1286 0.1 1.7 128872 37008 ? Ssl 13:30 0:04 /usr/lib/i386-l
djwow 1288 0.0 1.4 191940 30392 ? Ssl 13:30 0:00 /usr/lib/unity-
djwow 1295 0.0 0.3 47188 7660 ? Ssl 13:30 0:00 /usr/lib/at-spi
djwow 1296 0.0 0.6 91992 13204 ? Ssl 13:30 0:00 gnome-session -
djwow 1300 0.1 1.6 120156 33288 ? Ssl 13:30 0:04 /usr/lib/unity/
djwow 1303 0.0 0.1 6060 3876 ? S 13:30 0:00 /usr/bin/dbus-d
djwow 1307 0.0 0.2 29168 5120 ? Sl 13:30 0:00 /usr/lib/at-spi
djwow 1309 0.0 0.3 41156 7572 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1312 1.5 4.6 277928 96820 ? Ssl 13:30 0:56 compiz
djwow 1313 0.0 1.3 96204 28208 ? Sl 13:30 0:01 /usr/lib/ibus/i
djwow 1317 0.0 0.7 55320 14932 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1348 0.0 0.3 31852 7352 ? Sl 13:30 0:03 /usr/lib/ibus/i
djwow 1355 0.0 1.1 73888 22828 ? Sl 13:30 0:02 /usr/lib/i386-l
djwow 1362 0.0 0.4 167560 9220 ? S<l 13:30 0:00 /usr/bin/pulsea
djwow 1373 0.0 0.2 25260 4436 ? Sl 13:30 0:00 /usr/lib/dconf/
djwow 1377 0.0 0.4 52708 8912 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1378 0.0 0.3 49288 7456 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1379 0.0 0.3 65904 7800 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1380 0.0 0.9 135420 18760 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1381 0.0 1.0 121312 21940 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1382 0.0 0.5 130532 11368 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1383 0.0 1.1 84880 23288 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1384 0.0 0.4 74256 9812 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1404 0.0 0.5 57548 10652 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1456 0.0 1.2 111900 26628 ? Sl 13:30 0:00 /usr/lib/unity-
djwow 1458 0.0 1.0 141324 22344 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1459 0.0 0.9 63200 19052 ? Sl 13:30 0:00 /usr/lib/policy
djwow 1463 0.0 1.5 118088 32012 ? Sl 13:30 0:00 nm-applet
djwow 1464 0.8 3.9 334952 81100 ? Sl 13:30 0:33 nautilus -n
djwow 1470 0.0 2.0 108360 41444 ? Sl 13:30 0:01 /usr/bin/chines
djwow 1483 0.0 0.2 13588 5924 ? S 13:30 0:00 /usr/lib/i386-l
djwow 1491 0.0 0.5 51632 11428 ? Sl 13:30 0:00 /usr/lib/gvfs/g
root 1497 0.0 0.4 65884 10108 ? Ssl 13:30 0:00 /usr/lib/udisks
djwow 1511 0.0 0.3 80820 7540 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1517 0.0 0.3 38376 7016 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1522 0.0 0.2 39576 5460 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1553 0.0 2.1 164556 45044 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1562 0.0 0.5 50624 10504 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1569 0.0 0.2 47708 4660 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1579 0.0 0.0 2344 708 ? S 13:30 0:00 /bin/sh /usr/bi
djwow 1580 0.0 1.6 96860 34636 ? Sl 13:30 0:00 python indicato
djwow 1595 0.0 0.8 137268 16748 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1606 0.0 1.0 120420 21052 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1608 0.0 0.9 127708 20296 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1622 0.0 0.2 29348 5308 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1631 0.0 0.8 127388 17012 ? Sl 13:30 0:00 /usr/lib/evolut
root 1650 0.0 2.4 78704 50872 ? Sl 13:30 0:01 /usr/bin/python
djwow 1651 0.0 1.2 104856 24944 ? Sl 13:30 0:00 telepathy-indic
djwow 1677 0.0 0.9 84640 18996 ? Sl 13:30 0:00 /usr/lib/telepa
djwow 1768 0.0 1.1 73740 22892 ? Sl 13:31 0:00 update-notifier
djwow 1814 0.0 0.3 59400 8108 ? Sl 13:32 0:00 /usr/lib/i386-l
djwow 1843 0.0 0.9 80640 20036 ? Sl 13:33 0:00 /usr/lib/gvfs/g
djwow 1869 0.0 1.1 67160 24576 ? Sl 13:33 0:00 /usr/lib/i386-l
djwow 1886 0.0 0.4 58696 9592 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1893 0.0 0.9 88080 19536 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1913 0.0 0.3 49104 7928 ? Sl 13:34 0:00 /usr/lib/gvfs/g
root 2017 0.0 0.0 0 0 ? S 13:38 0:00 [kworker/u16:0]
djwow 2029 0.0 1.0 117556 21508 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2043 0.0 1.3 119304 27528 ? Sl 13:39 0:00 /usr/bin/unity-
djwow 2044 0.0 0.5 107332 12096 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2056 0.0 0.5 55436 10464 ? Sl 13:39 0:00 /usr/bin/zeitge
djwow 2074 0.0 0.8 72012 18172 ? Sl 13:39 0:00 /usr/lib/i386-l
root 2123 0.0 0.0 0 0 ? S 13:39 0:00 [kworker/1:1]
root 2345 0.0 0.0 0 0 ? S< 13:47 0:00 [cifsiod]
root 2350 0.0 0.0 0 0 ? S 13:47 0:00 [cifsd]
djwow 2390 0.6 2.1 137060 43536 ? Rl 13:48 0:17 /usr/lib/gnome-
djwow 2397 0.0 0.0 2504 1692 ? S 13:48 0:00 gnome-pty-helpe
djwow 2398 0.0 0.2 8568 4988 pts/4 Ss 13:48 0:00 bash
djwow 2426 0.0 0.3 15084 6972 pts/4 S+ 13:49 0:00 vim linux-comma
djwow 2427 0.0 0.2 8640 4908 pts/17 Ss 13:49 0:00 bash
root 2569 0.0 0.0 0 0 ? S 14:08 0:00 [kworker/1:0]
root 2685 0.0 0.0 0 0 ? S 14:19 0:00 [kworker/0:0]
root 2724 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/0:2]
root 2725 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/u16:2]
root 2781 0.0 0.0 0 0 ? S 14:32 0:00 [kworker/u16:1]
djwow 2793 1.0 0.1 6796 2548 pts/17 R+ 14:33 0:00 ps aux
djwow@ubuntu:~$ ps aux |less
djwow@ubuntu:~$ ps aux | a
a: command not found
djwow@ubuntu:~$ pu aux
pu: command not found
djwow@ubuntu:~$ pu aux
pu: command not found
djwow@ubuntu:~$ ps aux |u
u: command not found
djwow@ubuntu:~$ ps x |less
djwow@ubuntu:~$ top

top - 14:35:29 up 1:05, 3 users, load average: 0.05, 0.04, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.2 us, 0.3 sy, 0.0 ni, 99.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1051720 used, 1010572 free, 40560 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541948 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
826 root 20 0 331584 73680 46904 S 0.3 3.6 1:05.81 Xorg
1312 djwow 20 0 277928 96820 62580 S 0.3 4.7 0:59.00 compiz
1348 djwow 20 0 31852 7352 6872 S 0.3 0.4 0:03.74 ibus-engin+
2390 djwow 20 0 137228 43684 32540 S 0.3 2.1 0:19.00 gnome-term+
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
7 root 20 0 0 0 0 S 0.0 0.0 0:05.05 rcu_sched
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
18 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 netns
19 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 perf
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungtaskd
djwow@ubuntu:~$ free
total used free shared buffers cached
Mem: 2062292 1051916 1010376 34928 40568 541948
-/+ buffers/cache: 469400 1592892
Swap: 1046524 0 1046524
djwow@ubuntu:~$ top

top - 14:35:57 up 1:06, 3 users, load average: 0.03, 0.04, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0 us, 5.4 sy, 0.0 ni, 94.6 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1052216 used, 1010076 free, 40576 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
826 root 20 0 331584 73680 46904 S 10.3 3.6 1:06.10 Xorg
1245 djwow 20 0 50076 9676 6704 S 5.2 0.5 0:11.69 ibus-daemon
1312 djwow 20 0 277928 96820 62580 S 5.2 4.7 0:59.26 compiz
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
7 root 20 0 0 0 0 S 0.0 0.0 0:05.08 rcu_sched
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
18 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 netns
19 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 perf
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungtaskd
21 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 writeback
top - 14:35:59 up 1:06, 3 users, load average: 0.03, 0.04, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.4 us, 1.1 sy, 0.0 ni, 98.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1052216 used, 1010076 free, 40576 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
826 root 20 0 331584 73680 46904 S 0.9 3.6 1:06.12 Xorg
1312 djwow 20 0 277928 96820 62580 S 0.4 4.7 0:59.27 compiz
2390 djwow 20 0 137228 43684 32540 S 0.4 2.1 0:19.17 gnome-term+
2817 djwow 20 0 7156 2940 2488 R 0.4 0.1 0:00.09 top
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
7 root 20 0 0 0 0 S 0.0 0.0 0:05.08 rcu_sched
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
18 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 netns
19 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 perf
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungtaskd
top - 14:36:02 up 1:06, 3 users, load average: 0.03, 0.04, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.5 us, 0.7 sy, 0.0 ni, 98.5 id, 0.0 wa, 0.0 hi, 0.2 si, 0.0 st
KiB Mem: 2062292 total, 1052276 used, 1010016 free, 40576 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
2725 root 20 0 0 0 0 S 15.3 0.0 0:00.39 kworker/u1+
2781 root 20 0 0 0 0 S 12.7 0.0 0:00.30 kworker/u1+
826 root 20 0 331584 73680 46904 S 0.8 3.6 1:06.14 Xorg
1312 djwow 20 0 277928 96820 62580 S 0.8 4.7 0:59.29 compiz
1245 djwow 20 0 50076 9676 6704 S 0.4 0.5 0:11.70 ibus-daemon
2390 djwow 20 0 137228 43684 32540 S 0.4 2.1 0:19.18 gnome-term+
2817 djwow 20 0 7156 2940 2488 R 0.4 0.1 0:00.10 top
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
7 root 20 0 0 0 0 S 0.0 0.0 0:05.08 rcu_sched
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
top - 14:36:13 up 1:06, 3 users, load average: 0.03, 0.03, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 1.2 us, 2.4 sy, 0.0 ni, 96.4 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1052216 used, 1010076 free, 40584 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
826 root 20 0 331584 73680 46904 S 2.4 3.6 1:06.25 Xorg
1312 djwow 20 0 277928 96820 62580 S 2.4 4.7 0:59.38 compiz
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
7 root 20 0 0 0 0 S 0.0 0.0 0:05.09 rcu_sched
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
18 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 netns
19 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 perf
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungtaskd
21 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 writeback
22 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
top - 14:36:22 up 1:06, 3 users, load average: 0.02, 0.03, 0.05
Tasks: 229 total, 3 running, 226 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.2 us, 0.3 sy, 0.0 ni, 99.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1052216 used, 1010076 free, 40584 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
1312 djwow 20 0 277928 96820 62580 S 0.5 4.7 0:59.43 compiz
826 root 20 0 331584 73680 46904 R 0.3 3.6 1:06.28 Xorg
1245 djwow 20 0 50076 9676 6704 S 0.2 0.5 0:11.75 ibus-daemon
2390 djwow 20 0 137228 43684 32540 S 0.2 2.1 0:19.25 gnome-term+
7 root 20 0 0 0 0 S 0.1 0.0 0:05.10 rcu_sched
1348 djwow 20 0 31852 7352 6872 S 0.1 0.4 0:03.80 ibus-engin+
2817 djwow 20 0 7156 2940 2488 R 0.1 0.1 0:00.13 top
1 root 20 0 23836 4884 3756 S 0.0 0.2 0:01.79 systemd
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
3 root 20 0 0 0 0 S 0.0 0.0 0:00.09 ksoftirqd/0
5 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/0:+
8 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_bh
9 root rt 0 0 0 0 S 0.0 0.0 0:00.06 migration/0
10 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/0
11 root rt 0 0 0 0 S 0.0 0.0 0:00.01 watchdog/1
12 root rt 0 0 0 0 S 0.0 0.0 0:00.04 migration/1
13 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftirqd/1
15 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 kworker/1:+
16 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 khelper
17 root 20 0 0 0 0 S 0.0 0.0 0:00.15 kdevtmpfs
18 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 netns
top - 14:36:48 up 1:07, 3 users, load average: 0.01, 0.03, 0.05
Tasks: 229 total, 1 running, 228 sleeping, 0 stopped, 0 zombie
%Cpu(s): 0.0 us, 0.4 sy, 0.0 ni, 99.6 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
KiB Mem: 2062292 total, 1052216 used, 1010076 free, 40584 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
153 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_18
154 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_18
155 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_19
156 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_19
157 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_20
158 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_20
159 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_21
160 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_21
161 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_22
162 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_22
163 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_23
164 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_23
165 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_24
166 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_24
167 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_25
168 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_25
169 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_26
170 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_26
171 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_27
172 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_27
173 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_28
djwow@ubuntu:~$ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.2 23836 4884 ? Ss 13:29 0:01 /sbin/init auto
root 2 0.0 0.0 0 0 ? S 13:29 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/0]
root 5 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:0H]
root 7 0.1 0.0 0 0 ? S 13:29 0:05 [rcu_sched]
root 8 0.0 0.0 0 0 ? S 13:29 0:00 [rcu_bh]
root 9 0.0 0.0 0 0 ? S 13:29 0:00 [migration/0]
root 10 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/0]
root 11 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/1]
root 12 0.0 0.0 0 0 ? S 13:29 0:00 [migration/1]
root 13 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/1]
root 15 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/1:0H]
root 16 0.0 0.0 0 0 ? S< 13:29 0:00 [khelper]
root 17 0.0 0.0 0 0 ? S 13:29 0:00 [kdevtmpfs]
root 18 0.0 0.0 0 0 ? S< 13:29 0:00 [netns]
root 19 0.0 0.0 0 0 ? S< 13:29 0:00 [perf]
root 20 0.0 0.0 0 0 ? S 13:29 0:00 [khungtaskd]
root 21 0.0 0.0 0 0 ? S< 13:29 0:00 [writeback]
root 22 0.0 0.0 0 0 ? SN 13:29 0:00 [ksmd]
root 23 0.0 0.0 0 0 ? SN 13:29 0:00 [khugepaged]
root 24 0.0 0.0 0 0 ? S< 13:29 0:00 [crypto]
root 25 0.0 0.0 0 0 ? S< 13:29 0:00 [kintegrityd]
root 26 0.0 0.0 0 0 ? S< 13:29 0:00 [bioset]
root 27 0.0 0.0 0 0 ? S< 13:29 0:00 [kblockd]
root 28 0.0 0.0 0 0 ? S< 13:29 0:00 [ata_sff]
root 29 0.0 0.0 0 0 ? S< 13:29 0:00 [md]
root 30 0.0 0.0 0 0 ? S< 13:29 0:00 [devfreq_wq]
root 35 0.0 0.0 0 0 ? S 13:29 0:00 [kswapd0]
root 36 0.0 0.0 0 0 ? S 13:29 0:00 [fsnotify_mark]
root 37 0.0 0.0 0 0 ? S 13:29 0:00 [ecryptfs-kthre
root 48 0.0 0.0 0 0 ? S< 13:29 0:00 [kthrotld]
root 49 0.0 0.0 0 0 ? S< 13:29 0:00 [acpi_thermal_p
root 51 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_0]
root 52 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_0]
root 53 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_1]
root 54 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_1]
root 56 0.0 0.0 0 0 ? S< 13:29 0:00 [ipv6_addrconf]
root 77 0.0 0.0 0 0 ? S< 13:29 0:00 [deferwq]
root 78 0.0 0.0 0 0 ? S< 13:29 0:00 [charger_manage
root 118 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt_poll_0]
root 119 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt/0]
root 120 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_2]
root 121 0.0 0.0 0 0 ? S< 13:29 0:00 [kpsmoused]
root 122 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_2]
root 123 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_3]
root 124 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_3]
root 125 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_4]
root 126 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_4]
root 127 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_5]
root 128 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_5]
root 129 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_6]
root 130 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_6]
root 131 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_7]
root 132 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_7]
root 133 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_8]
root 134 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_8]
root 135 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_9]
root 136 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_9]
root 137 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_10]
root 138 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_10]
root 139 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_11]
root 140 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_11]
root 141 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_12]
root 142 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_12]
root 143 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_13]
root 144 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_13]
root 145 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_14]
root 146 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_14]
root 147 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_15]
root 148 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_15]
root 149 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_16]
root 150 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_16]
root 151 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_17]
root 152 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_17]
root 153 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_18]
root 154 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_18]
root 155 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_19]
root 156 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_19]
root 157 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_20]
root 158 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_20]
root 159 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_21]
root 160 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_21]
root 161 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_22]
root 162 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_22]
root 163 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_23]
root 164 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_23]
root 165 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_24]
root 166 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_24]
root 167 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_25]
root 168 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_25]
root 169 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_26]
root 170 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_26]
root 171 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_27]
root 172 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_27]
root 173 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_28]
root 174 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_28]
root 175 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_29]
root 176 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_29]
root 177 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_30]
root 178 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_30]
root 179 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_31]
root 180 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_31]
root 207 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_32]
root 208 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_32]
root 209 0.0 0.0 0 0 ? S< 13:29 0:00 [ttm_swap]
root 238 0.0 0.0 0 0 ? S 13:29 0:00 [jbd2/sda1-8]
root 239 0.0 0.0 0 0 ? S< 13:29 0:00 [ext4-rsv-conve
root 274 0.0 0.0 0 0 ? S 13:29 0:00 [kauditd]
root 296 0.0 0.2 8664 4784 ? Ss 13:29 0:00 /lib/systemd/sy
root 300 0.0 0.2 15780 5620 ? Ss 13:29 0:00 /lib/systemd/sy
syslog 593 0.0 0.1 31644 3116 ? Ssl 13:29 0:00 /usr/sbin/rsysl
root 596 0.0 0.3 52884 7900 ? Ssl 13:29 0:00 /usr/sbin/therm
root 598 0.0 0.4 43628 8268 ? Ssl 13:29 0:00 /usr/lib/accoun
root 599 0.0 0.1 4184 3036 ? Ss 13:29 0:00 /lib/systemd/sy
root 603 0.0 0.3 42272 8084 ? Ssl 13:29 0:00 /usr/sbin/Modem
whoopsie 606 0.0 0.5 51204 11260 ? Ssl 13:29 0:00 /usr/bin/whoops
root 607 0.0 0.3 14460 6740 ? Ss 13:29 0:00 /usr/sbin/cupsd
root 609 0.0 0.1 7060 2880 ? Ss 13:29 0:00 /usr/sbin/cron
root 615 0.1 0.9 88780 20076 ? Ssl 13:29 0:06 /usr/sbin/Netwo
root 620 0.0 0.1 4712 2552 ? Ss 13:29 0:00 /sbin/cgmanager
message+ 622 0.0 0.2 6900 4748 ? Ss 13:29 0:00 /usr/bin/dbus-d
root 655 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:1H]
avahi 663 0.0 0.1 5292 3132 ? Ss 13:29 0:01 avahi-daemon: r
lp 664 0.0 0.2 10288 4940 ? S 13:29 0:00 /usr/lib/cups/n
avahi 665 0.0 0.0 5292 272 ? S 13:29 0:00 avahi-daemon: c
root 677 0.0 0.4 37156 8872 ? Ssl 13:29 0:00 /usr/sbin/cups-
root 678 0.0 0.4 43732 9516 ? Ssl 13:29 0:00 /usr/lib/policy
kernoops 699 0.0 0.0 8848 308 ? Ss 13:29 0:00 /usr/sbin/kerne
root 705 0.0 0.0 4744 1960 tty1 Ss+ 13:29 0:00 /sbin/agetty --
root 706 0.0 0.2 9732 4572 ? Ss 13:29 0:00 /sbin/wpa_suppl
root 709 0.0 0.3 9276 7888 ? S 13:29 0:00 /sbin/dhclient
nobody 719 0.0 0.1 9956 3964 ? S 13:29 0:00 /usr/sbin/dnsma
root 776 0.0 0.4 46776 9652 ? SLsl 13:29 0:00 /usr/sbin/light
root 826 1.6 3.5 331584 73680 tty7 Ss+ 13:29 1:07 /usr/bin/X -cor
root 999 0.0 0.0 0 0 ? S< 13:30 0:00 [kworker/1:1H]
rtkit 1068 0.0 0.1 23160 2884 ? SNsl 13:30 0:00 /usr/lib/rtkit/
root 1090 0.0 0.4 73584 9400 ? Ssl 13:30 0:00 /usr/lib/upower
colord 1105 0.0 0.5 46032 11772 ? Ssl 13:30 0:00 /usr/lib/colord
root 1116 0.0 0.2 27896 6016 ? Sl 13:30 0:00 lightdm --sessi
djwow 1125 0.0 0.2 6320 4772 ? Ss 13:30 0:00 /lib/systemd/sy
djwow 1126 0.0 0.0 7384 1208 ? S 13:30 0:00 (sd-pam)
djwow 1132 0.0 0.4 53500 9336 ? Sl 13:30 0:00 /usr/bin/gnome-
djwow 1134 0.0 0.2 9256 4212 ? Ss 13:30 0:00 /sbin/upstart -
djwow 1214 0.0 0.0 8288 220 ? S 13:30 0:00 upstart-udev-br
djwow 1220 0.0 0.1 6816 4028 ? Ss 13:30 0:02 dbus-daemon --f
djwow 1231 0.0 0.4 47028 8960 ? Ss 13:30 0:00 /usr/lib/i386-l
djwow 1245 0.3 0.4 50076 9676 ? Ssl 13:30 0:11 /usr/bin/ibus-d
djwow 1250 0.0 0.2 39508 5464 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1255 0.0 0.2 53968 5704 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1267 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1269 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1278 0.0 0.0 8516 296 ? S 13:30 0:00 upstart-file-br
djwow 1286 0.1 1.7 128872 37008 ? Ssl 13:30 0:04 /usr/lib/i386-l
djwow 1288 0.0 1.4 191940 30392 ? Ssl 13:30 0:00 /usr/lib/unity-
djwow 1295 0.0 0.3 47188 7660 ? Ssl 13:30 0:00 /usr/lib/at-spi
djwow 1296 0.0 0.6 91992 13204 ? Ssl 13:30 0:00 gnome-session -
djwow 1300 0.1 1.6 120156 33288 ? Ssl 13:30 0:04 /usr/lib/unity/
djwow 1303 0.0 0.1 6060 3876 ? S 13:30 0:00 /usr/bin/dbus-d
djwow 1307 0.0 0.2 29168 5120 ? Sl 13:30 0:00 /usr/lib/at-spi
djwow 1309 0.0 0.3 41156 7572 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1312 1.5 4.6 277928 96820 ? Ssl 13:30 0:59 compiz
djwow 1313 0.0 1.3 96204 28208 ? Sl 13:30 0:01 /usr/lib/ibus/i
djwow 1317 0.0 0.7 55320 14932 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1348 0.0 0.3 31852 7352 ? Sl 13:30 0:03 /usr/lib/ibus/i
djwow 1355 0.0 1.1 73888 22828 ? Sl 13:30 0:02 /usr/lib/i386-l
djwow 1362 0.0 0.4 167560 9220 ? S<l 13:30 0:00 /usr/bin/pulsea
djwow 1373 0.0 0.2 25260 4436 ? Sl 13:30 0:00 /usr/lib/dconf/
djwow 1377 0.0 0.4 52708 8912 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1378 0.0 0.3 49288 7456 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1379 0.0 0.3 65904 7800 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1380 0.0 0.9 135420 18760 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1381 0.0 1.0 121312 21940 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1382 0.0 0.5 130532 11368 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1383 0.0 1.1 84880 23288 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1384 0.0 0.4 74256 9812 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1404 0.0 0.5 57548 10652 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1456 0.0 1.2 111900 26628 ? Sl 13:30 0:00 /usr/lib/unity-
djwow 1458 0.0 1.0 141324 22344 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1459 0.0 0.9 63200 19052 ? Sl 13:30 0:00 /usr/lib/policy
djwow 1463 0.0 1.5 118088 32012 ? Sl 13:30 0:00 nm-applet
djwow 1464 0.8 3.9 334952 81100 ? Sl 13:30 0:33 nautilus -n
djwow 1470 0.0 2.0 108360 41444 ? Sl 13:30 0:01 /usr/bin/chines
djwow 1483 0.0 0.2 13588 5924 ? S 13:30 0:00 /usr/lib/i386-l
djwow 1491 0.0 0.5 51632 11428 ? Sl 13:30 0:00 /usr/lib/gvfs/g
root 1497 0.0 0.4 65884 10108 ? Ssl 13:30 0:00 /usr/lib/udisks
djwow 1511 0.0 0.3 80820 7540 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1517 0.0 0.3 38376 7016 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1522 0.0 0.2 39576 5460 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1553 0.0 2.1 164556 45044 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1562 0.0 0.5 50624 10504 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1569 0.0 0.2 47708 4660 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1579 0.0 0.0 2344 708 ? S 13:30 0:00 /bin/sh /usr/bi
djwow 1580 0.0 1.6 96860 34636 ? Sl 13:30 0:00 python indicato
djwow 1595 0.0 0.8 137268 16748 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1606 0.0 1.0 120420 21052 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1608 0.0 0.9 127708 20296 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1622 0.0 0.2 29348 5308 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1631 0.0 0.8 127388 17012 ? Sl 13:30 0:00 /usr/lib/evolut
root 1650 0.0 2.4 78704 50872 ? Sl 13:30 0:01 /usr/bin/python
djwow 1651 0.0 1.2 104856 24944 ? Sl 13:30 0:00 telepathy-indic
djwow 1677 0.0 0.9 84640 18996 ? Sl 13:30 0:00 /usr/lib/telepa
djwow 1768 0.0 1.1 73740 22892 ? Sl 13:31 0:00 update-notifier
djwow 1814 0.0 0.3 59400 8108 ? Sl 13:32 0:00 /usr/lib/i386-l
djwow 1843 0.0 0.9 80640 20036 ? Sl 13:33 0:00 /usr/lib/gvfs/g
djwow 1869 0.0 1.1 67160 24576 ? Sl 13:33 0:00 /usr/lib/i386-l
djwow 1886 0.0 0.4 58696 9592 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1893 0.0 0.9 88080 19536 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1913 0.0 0.3 49104 7928 ? Sl 13:34 0:00 /usr/lib/gvfs/g
root 2017 0.0 0.0 0 0 ? S 13:38 0:00 [kworker/u16:0]
djwow 2029 0.0 1.0 117556 21508 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2043 0.0 1.3 119304 27528 ? Sl 13:39 0:00 /usr/bin/unity-
djwow 2044 0.0 0.5 107332 12096 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2056 0.0 0.5 55436 10464 ? Sl 13:39 0:00 /usr/bin/zeitge
djwow 2074 0.0 0.8 72012 18172 ? Sl 13:39 0:00 /usr/lib/i386-l
root 2123 0.0 0.0 0 0 ? S 13:39 0:00 [kworker/1:1]
root 2345 0.0 0.0 0 0 ? S< 13:47 0:00 [cifsiod]
root 2350 0.0 0.0 0 0 ? S 13:47 0:00 [cifsd]
djwow 2390 0.6 2.1 137228 43684 ? Rl 13:48 0:19 /usr/lib/gnome-
djwow 2397 0.0 0.0 2504 1692 ? S 13:48 0:00 gnome-pty-helpe
djwow 2398 0.0 0.2 8568 4988 pts/4 Ss 13:48 0:00 bash
djwow 2426 0.0 0.3 15084 6972 pts/4 S+ 13:49 0:00 vim linux-comma
djwow 2427 0.0 0.2 8640 4908 pts/17 Ss 13:49 0:00 bash
root 2569 0.0 0.0 0 0 ? S 14:08 0:00 [kworker/1:0]
root 2685 0.0 0.0 0 0 ? S 14:19 0:00 [kworker/0:0]
root 2724 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/0:2]
root 2725 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/u16:2]
root 2781 0.1 0.0 0 0 ? S 14:32 0:00 [kworker/u16:1]
root 2802 0.0 0.0 0 0 ? S 14:34 0:00 [kworker/1:2]
djwow 2818 0.0 0.1 6796 2580 pts/17 R+ 14:36 0:00 ps aux
djwow@ubuntu:~$ top

top - 14:37:31 up 1:07, 3 users, load average: 0.01, 0.03, 0.05
KiB Mem: 2062292 total, 1052388 used, 1009904 free, 40584 buffers
KiB Swap: 1046524 total, 0 used, 1046524 free. 541964 cached Mem

PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
147 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_15
148 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_15
149 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_16
150 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_16
151 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_17
152 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_17
153 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_18
154 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_18
155 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_19
156 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_19
157 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_20
158 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_20
159 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_21
160 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_21
161 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_22
162 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_22
163 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_23
164 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_23
165 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_24
166 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_24
167 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_25
168 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 scsi_tmf_25
169 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh_26
djwow@ubuntu:~$ ps aux |less
djwow@ubuntu:~$ cat /proc//meminfo |grep Mem
MemTotal: 2062292 kB
MemFree: 1010576 kB
MemAvailable: 1565492 kB
djwow@ubuntu:~$ cat /proc /cpuinfo
cat: /proc: Is a directory
cat: /cpuinfo: No such file or directory
djwow@ubuntu:~$ cat /proc/cpuinfo
processor : 0
vendor_id : GenuineIntel
cpu family : 6
model : 60
model name : Intel(R) Core(TM) i5-4200M CPU @ 2.50GHz
stepping : 3
microcode : 0x8
cpu MHz : 2494.259
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 0
cpu cores : 2
apicid : 0
initial apicid : 0
fdiv_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss ht nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf eagerfpu pni pclmulqdq ssse3 fma cx16 pcid
sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb pln pts dtherm fsgsbase smep xsaveopt
bugs :
bogomips : 4988.51
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:

processor : 1
vendor_id : GenuineIntel
cpu family : 6
model : 60
model name : Intel(R) Core(TM) i5-4200M CPU @ 2.50GHz
stepping : 3
microcode : 0x8
cpu MHz : 2494.259
cache size : 3072 KB
physical id : 0
siblings : 2
core id : 1
cpu cores : 2
apicid : 1
initial apicid : 1
fdiv_bug : no
f00f_bug : no
coma_bug : no
fpu : yes
fpu_exception : yes
cpuid level : 13
wp : yes
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss ht nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf eagerfpu pni pclmulqdq ssse3 fma cx16 pcid
sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand hypervisor lahf_lm ida arat epb pln pts dtherm fsgsbase smep xsaveopt
bugs :
bogomips : 4988.51
clflush size : 64
cache_alignment : 64
address sizes : 40 bits physical, 48 bits virtual
power management:

djwow@ubuntu:~$ ipconfig
No command 'ipconfig' found, did you mean:
Command 'iconfig' from package 'ipmiutil' (universe)
Command 'ifconfig' from package 'net-tools' (main)
Command 'iwconfig' from package 'wireless-tools' (main)
ipconfig: command not found
djwow@ubuntu:~$ ifconfig
eno16777736 Link encap:Ethernet HWaddr 00:0c:29:42:f9:c9
inet addr:192.168.0.11 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe42:f9c9/64 Scopeink
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2034 errors:0 dropped:0 overruns:0 frame:0
TX packets:1053 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:441330 (441.3 KB) TX bytes:138055 (138.0 KB)
Interrupt:19 Base address:0x2000

lo Link encapocal Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:191 errors:0 dropped:0 overruns:0 frame:0
TX packets:191 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:21878 (21.8 KB) TX bytes:21878 (21.8 KB)

djwow@ubuntu:~$ free
total used free shared buffers cached
Mem: 2062292 1051792 1010500 34928 40584 541964
-/+ buffers/cache: 469244 1593048
Swap: 1046524 0 1046524
djwow@ubuntu:~$ ps aux
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 1 0.0 0.2 23836 4884 ? Ss 13:29 0:01 /sbin/init auto
root 2 0.0 0.0 0 0 ? S 13:29 0:00 [kthreadd]
root 3 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/0]
root 5 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:0H]
root 7 0.1 0.0 0 0 ? S 13:29 0:05 [rcu_sched]
root 8 0.0 0.0 0 0 ? S 13:29 0:00 [rcu_bh]
root 9 0.0 0.0 0 0 ? S 13:29 0:00 [migration/0]
root 10 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/0]
root 11 0.0 0.0 0 0 ? S 13:29 0:00 [watchdog/1]
root 12 0.0 0.0 0 0 ? S 13:29 0:00 [migration/1]
root 13 0.0 0.0 0 0 ? S 13:29 0:00 [ksoftirqd/1]
root 15 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/1:0H]
root 16 0.0 0.0 0 0 ? S< 13:29 0:00 [khelper]
root 17 0.0 0.0 0 0 ? S 13:29 0:00 [kdevtmpfs]
root 18 0.0 0.0 0 0 ? S< 13:29 0:00 [netns]
root 19 0.0 0.0 0 0 ? S< 13:29 0:00 [perf]
root 20 0.0 0.0 0 0 ? S 13:29 0:00 [khungtaskd]
root 21 0.0 0.0 0 0 ? S< 13:29 0:00 [writeback]
root 22 0.0 0.0 0 0 ? SN 13:29 0:00 [ksmd]
root 23 0.0 0.0 0 0 ? SN 13:29 0:00 [khugepaged]
root 24 0.0 0.0 0 0 ? S< 13:29 0:00 [crypto]
root 25 0.0 0.0 0 0 ? S< 13:29 0:00 [kintegrityd]
root 26 0.0 0.0 0 0 ? S< 13:29 0:00 [bioset]
root 27 0.0 0.0 0 0 ? S< 13:29 0:00 [kblockd]
root 28 0.0 0.0 0 0 ? S< 13:29 0:00 [ata_sff]
root 29 0.0 0.0 0 0 ? S< 13:29 0:00 [md]
root 30 0.0 0.0 0 0 ? S< 13:29 0:00 [devfreq_wq]
root 35 0.0 0.0 0 0 ? S 13:29 0:00 [kswapd0]
root 36 0.0 0.0 0 0 ? S 13:29 0:00 [fsnotify_mark]
root 37 0.0 0.0 0 0 ? S 13:29 0:00 [ecryptfs-kthre
root 48 0.0 0.0 0 0 ? S< 13:29 0:00 [kthrotld]
root 49 0.0 0.0 0 0 ? S< 13:29 0:00 [acpi_thermal_p
root 51 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_0]
root 52 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_0]
root 53 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_1]
root 54 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_1]
root 56 0.0 0.0 0 0 ? S< 13:29 0:00 [ipv6_addrconf]
root 77 0.0 0.0 0 0 ? S< 13:29 0:00 [deferwq]
root 78 0.0 0.0 0 0 ? S< 13:29 0:00 [charger_manage
root 118 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt_poll_0]
root 119 0.0 0.0 0 0 ? S< 13:29 0:00 [mpt/0]
root 120 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_2]
root 121 0.0 0.0 0 0 ? S< 13:29 0:00 [kpsmoused]
root 122 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_2]
root 123 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_3]
root 124 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_3]
root 125 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_4]
root 126 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_4]
root 127 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_5]
root 128 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_5]
root 129 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_6]
root 130 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_6]
root 131 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_7]
root 132 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_7]
root 133 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_8]
root 134 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_8]
root 135 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_9]
root 136 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_9]
root 137 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_10]
root 138 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_10]
root 139 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_11]
root 140 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_11]
root 141 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_12]
root 142 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_12]
root 143 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_13]
root 144 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_13]
root 145 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_14]
root 146 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_14]
root 147 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_15]
root 148 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_15]
root 149 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_16]
root 150 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_16]
root 151 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_17]
root 152 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_17]
root 153 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_18]
root 154 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_18]
root 155 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_19]
root 156 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_19]
root 157 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_20]
root 158 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_20]
root 159 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_21]
root 160 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_21]
root 161 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_22]
root 162 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_22]
root 163 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_23]
root 164 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_23]
root 165 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_24]
root 166 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_24]
root 167 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_25]
root 168 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_25]
root 169 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_26]
root 170 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_26]
root 171 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_27]
root 172 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_27]
root 173 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_28]
root 174 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_28]
root 175 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_29]
root 176 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_29]
root 177 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_30]
root 178 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_30]
root 179 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_31]
root 180 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_31]
root 207 0.0 0.0 0 0 ? S 13:29 0:00 [scsi_eh_32]
root 208 0.0 0.0 0 0 ? S< 13:29 0:00 [scsi_tmf_32]
root 209 0.0 0.0 0 0 ? S< 13:29 0:00 [ttm_swap]
root 238 0.0 0.0 0 0 ? S 13:29 0:00 [jbd2/sda1-8]
root 239 0.0 0.0 0 0 ? S< 13:29 0:00 [ext4-rsv-conve
root 274 0.0 0.0 0 0 ? S 13:29 0:00 [kauditd]
root 296 0.0 0.2 8664 4784 ? Ss 13:29 0:00 /lib/systemd/sy
root 300 0.0 0.2 15780 5620 ? Ss 13:29 0:00 /lib/systemd/sy
syslog 593 0.0 0.1 31644 3116 ? Ssl 13:29 0:00 /usr/sbin/rsysl
root 596 0.0 0.3 52884 7900 ? Ssl 13:29 0:00 /usr/sbin/therm
root 598 0.0 0.4 43628 8268 ? Ssl 13:29 0:00 /usr/lib/accoun
root 599 0.0 0.1 4184 3036 ? Ss 13:29 0:00 /lib/systemd/sy
root 603 0.0 0.3 42272 8084 ? Ssl 13:29 0:00 /usr/sbin/Modem
whoopsie 606 0.0 0.5 51204 11260 ? Ssl 13:29 0:00 /usr/bin/whoops
root 607 0.0 0.3 14460 6740 ? Ss 13:29 0:00 /usr/sbin/cupsd
root 609 0.0 0.1 7060 2880 ? Ss 13:29 0:00 /usr/sbin/cron
root 615 0.1 0.9 88780 20076 ? Ssl 13:29 0:06 /usr/sbin/Netwo
root 620 0.0 0.1 4712 2552 ? Ss 13:29 0:00 /sbin/cgmanager
message+ 622 0.0 0.2 6900 4748 ? Ss 13:29 0:00 /usr/bin/dbus-d
root 655 0.0 0.0 0 0 ? S< 13:29 0:00 [kworker/0:1H]
avahi 663 0.0 0.1 5292 3132 ? Ss 13:29 0:01 avahi-daemon: r
lp 664 0.0 0.2 10288 4940 ? S 13:29 0:00 /usr/lib/cups/n
avahi 665 0.0 0.0 5292 272 ? S 13:29 0:00 avahi-daemon: c
root 677 0.0 0.4 37156 8872 ? Ssl 13:29 0:00 /usr/sbin/cups-
root 678 0.0 0.4 43732 9516 ? Ssl 13:29 0:00 /usr/lib/policy
kernoops 699 0.0 0.0 8848 308 ? Ss 13:29 0:00 /usr/sbin/kerne
root 705 0.0 0.0 4744 1960 tty1 Ss+ 13:29 0:00 /sbin/agetty --
root 706 0.0 0.2 9732 4572 ? Ss 13:29 0:00 /sbin/wpa_suppl
root 709 0.0 0.3 9276 7888 ? S 13:29 0:00 /sbin/dhclient
nobody 719 0.0 0.1 9956 3964 ? S 13:29 0:00 /usr/sbin/dnsma
root 776 0.0 0.4 46776 9652 ? SLsl 13:29 0:00 /usr/sbin/light
root 826 1.7 3.5 331584 73680 tty7 Ss+ 13:29 1:11 /usr/bin/X -cor
root 999 0.0 0.0 0 0 ? S< 13:30 0:00 [kworker/1:1H]
rtkit 1068 0.0 0.1 23160 2884 ? SNsl 13:30 0:00 /usr/lib/rtkit/
root 1090 0.0 0.4 73584 9400 ? Ssl 13:30 0:00 /usr/lib/upower
colord 1105 0.0 0.5 46032 11772 ? Ssl 13:30 0:00 /usr/lib/colord
root 1116 0.0 0.2 27896 6016 ? Sl 13:30 0:00 lightdm --sessi
djwow 1125 0.0 0.2 6320 4772 ? Ss 13:30 0:00 /lib/systemd/sy
djwow 1126 0.0 0.0 7384 1208 ? S 13:30 0:00 (sd-pam)
djwow 1132 0.0 0.4 53500 9336 ? Sl 13:30 0:00 /usr/bin/gnome-
djwow 1134 0.0 0.2 9256 4212 ? Ss 13:30 0:00 /sbin/upstart -
djwow 1214 0.0 0.0 8288 220 ? S 13:30 0:00 upstart-udev-br
djwow 1220 0.0 0.1 6816 4028 ? Ss 13:30 0:02 dbus-daemon --f
djwow 1231 0.0 0.4 47028 8960 ? Ss 13:30 0:00 /usr/lib/i386-l
djwow 1245 0.3 0.4 50076 9864 ? Ssl 13:30 0:13 /usr/bin/ibus-d
djwow 1250 0.0 0.2 39508 5464 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1255 0.0 0.2 53968 5704 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1267 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1269 0.0 0.0 8216 224 ? S 13:30 0:00 upstart-dbus-br
djwow 1278 0.0 0.0 8516 296 ? S 13:30 0:00 upstart-file-br
djwow 1286 0.1 1.7 128872 37008 ? Ssl 13:30 0:04 /usr/lib/i386-l
djwow 1288 0.0 1.4 191940 30392 ? Ssl 13:30 0:00 /usr/lib/unity-
djwow 1295 0.0 0.3 47188 7660 ? Ssl 13:30 0:00 /usr/lib/at-spi
djwow 1296 0.0 0.6 91992 13204 ? Ssl 13:30 0:00 gnome-session -
djwow 1300 0.1 1.6 120156 33288 ? Ssl 13:30 0:04 /usr/lib/unity/
djwow 1303 0.0 0.1 6060 3876 ? S 13:30 0:00 /usr/bin/dbus-d
djwow 1307 0.0 0.2 29168 5120 ? Sl 13:30 0:00 /usr/lib/at-spi
djwow 1309 0.0 0.3 41156 7572 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1312 1.5 4.6 277928 96820 ? Ssl 13:30 1:02 compiz
djwow 1313 0.0 1.3 96204 28208 ? Sl 13:30 0:01 /usr/lib/ibus/i
djwow 1317 0.0 0.7 55320 14932 ? Sl 13:30 0:00 /usr/lib/ibus/i
djwow 1348 0.1 0.3 31852 7352 ? Sl 13:30 0:04 /usr/lib/ibus/i
djwow 1355 0.0 1.1 73888 22828 ? Sl 13:30 0:02 /usr/lib/i386-l
djwow 1362 0.0 0.4 167560 9220 ? S<l 13:30 0:00 /usr/bin/pulsea
djwow 1373 0.0 0.2 25260 4436 ? Sl 13:30 0:00 /usr/lib/dconf/
djwow 1377 0.0 0.4 52708 8912 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1378 0.0 0.3 49288 7456 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1379 0.0 0.3 65904 7800 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1380 0.0 0.9 135420 18760 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1381 0.0 1.0 121312 21940 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1382 0.0 0.5 130532 11368 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1383 0.0 1.1 84880 23288 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1384 0.0 0.4 74256 9812 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1404 0.0 0.5 57548 10652 ? Ssl 13:30 0:00 /usr/lib/i386-l
djwow 1456 0.0 1.2 111900 26628 ? Sl 13:30 0:00 /usr/lib/unity-
djwow 1458 0.0 1.0 141324 22344 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1459 0.0 0.9 63200 19052 ? Sl 13:30 0:00 /usr/lib/policy
djwow 1463 0.0 1.5 118088 32012 ? Sl 13:30 0:00 nm-applet
djwow 1464 0.8 3.9 334952 81100 ? Sl 13:30 0:33 nautilus -n
djwow 1470 0.0 2.0 108360 41444 ? Sl 13:30 0:01 /usr/bin/chines
djwow 1483 0.0 0.2 13588 5924 ? S 13:30 0:00 /usr/lib/i386-l
djwow 1491 0.0 0.5 51632 11428 ? Sl 13:30 0:00 /usr/lib/gvfs/g
root 1497 0.0 0.4 65884 10108 ? Ssl 13:30 0:00 /usr/lib/udisks
djwow 1511 0.0 0.3 80820 7540 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1517 0.0 0.3 38376 7016 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1522 0.0 0.2 39576 5460 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1553 0.0 2.1 164556 45044 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1562 0.0 0.5 50624 10504 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1569 0.0 0.2 47708 4660 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1579 0.0 0.0 2344 708 ? S 13:30 0:00 /bin/sh /usr/bi
djwow 1580 0.0 1.6 96860 34636 ? Sl 13:30 0:00 python indicato
djwow 1595 0.0 0.8 137268 16748 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1606 0.0 1.0 120420 21052 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1608 0.0 0.9 127708 20296 ? Sl 13:30 0:00 /usr/lib/evolut
djwow 1622 0.0 0.2 29348 5308 ? Sl 13:30 0:00 /usr/lib/gvfs/g
djwow 1631 0.0 0.8 127388 17012 ? Sl 13:30 0:00 /usr/lib/evolut
root 1650 0.0 2.4 78704 50872 ? Sl 13:30 0:01 /usr/bin/python
djwow 1651 0.0 1.2 104856 24944 ? Sl 13:30 0:00 telepathy-indic
djwow 1677 0.0 0.9 84640 18996 ? Sl 13:30 0:00 /usr/lib/telepa
djwow 1768 0.0 1.1 73740 22892 ? Sl 13:31 0:00 update-notifier
djwow 1814 0.0 0.3 59400 8108 ? Sl 13:32 0:00 /usr/lib/i386-l
djwow 1843 0.0 0.9 80640 20036 ? Sl 13:33 0:00 /usr/lib/gvfs/g
djwow 1869 0.0 1.1 67160 24576 ? Sl 13:33 0:00 /usr/lib/i386-l
djwow 1886 0.0 0.4 58696 9592 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1893 0.0 0.9 88080 19536 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 1913 0.0 0.3 49104 7928 ? Sl 13:34 0:00 /usr/lib/gvfs/g
djwow 2029 0.0 1.0 117556 21508 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2043 0.0 1.3 119304 27528 ? Sl 13:39 0:00 /usr/bin/unity-
djwow 2044 0.0 0.5 107332 12096 ? Sl 13:39 0:00 /usr/lib/i386-l
djwow 2056 0.0 0.5 55436 10464 ? Sl 13:39 0:00 /usr/bin/zeitge
djwow 2074 0.0 0.8 72012 18172 ? Sl 13:39 0:00 /usr/lib/i386-l
root 2123 0.0 0.0 0 0 ? S 13:39 0:00 [kworker/1:1]
root 2345 0.0 0.0 0 0 ? S< 13:47 0:00 [cifsiod]
root 2350 0.0 0.0 0 0 ? S 13:47 0:00 [cifsd]
djwow 2390 0.7 2.1 137228 43684 ? Rl 13:48 0:22 /usr/lib/gnome-
djwow 2397 0.0 0.0 2504 1692 ? S 13:48 0:00 gnome-pty-helpe
djwow 2398 0.0 0.2 8568 4988 pts/4 Ss 13:48 0:00 bash
djwow 2426 0.0 0.3 15084 6972 pts/4 S+ 13:49 0:00 vim linux-comma
djwow 2427 0.0 0.2 8640 4908 pts/17 Ss 13:49 0:00 bash
root 2685 0.0 0.0 0 0 ? S 14:19 0:00 [kworker/0:0]
root 2724 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/0:2]
root 2725 0.0 0.0 0 0 ? S 14:25 0:00 [kworker/u16:2]
root 2781 0.0 0.0 0 0 ? S 14:32 0:00 [kworker/u16:1]
root 2802 0.0 0.0 0 0 ? S 14:34 0:00 [kworker/1:2]
root 2822 0.0 0.0 0 0 ? S 14:37 0:00 [kworker/0:1]
djwow 2831 0.0 0.1 6796 2484 pts/17 R+ 14:39 0:00 ps aux
djwow@ubuntu:~$ ps aux|less
djwow@ubuntu:~$ ifconfig
eno16777736 Link encap:Ethernet HWaddr 00:0c:29:42:f9:c9
inet addr:192.168.0.11 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: fe80::20c:29ff:fe42:f9c9/64 Scopeink
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:2067 errors:0 dropped:0 overruns:0 frame:0
TX packets:1058 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:444036 (444.0 KB) TX bytes:138445 (138.4 KB)
Interrupt:19 Base address:0x2000

lo Link encapocal Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:191 errors:0 dropped:0 overruns:0 frame:0
TX packets:191 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:21878 (21.8 KB) TX bytes:21878 (21.8 KB)

djwow@ubuntu:~$ iptables
iptables v1.4.21: no command specified
Try `iptables -h' or 'iptables --help' for more information.
djwow@ubuntu:~$ iptables
iptables v1.4.21: no command specified
Try `iptables -h' or 'iptables --help' for more information.
djwow@ubuntu:~$ sudo iptables -D OUmodprobe: ERROR: could not insert 'ip_tables': Operation not permitted
iptables v1.4.21: can't initialize iptables table `filter': Table does not exist (do you need to insmod?)
Perhaps iptables or your kernel needs to be upgraded.

[sudo] password for djwow:
iptables: Bad rule (does a matching rule exist in that chain?).
djwow@ubuntu:~$ sudo iptables -D OUTPUT 1
iptables: Index of deletion too big.
djwow@ubuntu:~$ netstat -anp:a
netstat: invalid option -- ':'
usage: netstat [-vWeenNcCF] [<Af>] -r netstat {-V|--version|-h|--help}
netstat [-vWnNcaeol] [<Socket> ...]
netstat { [-vWeenNac] -i | [-cWnNe] -M | -s }

-r, --route display routing table
-i, --interfaces display interface table
-g, --groups display multicast group memberships
-s, --statistics display networking statistics (like SNMP)
-M, --masquerade display masqueraded connections

-v, --verbose be verbose
-W, --wide don't truncate IP addresses
-n, --numeric don't resolve names
--numeric-hosts don't resolve host names
--numeric-ports don't resolve port names
--numeric-users don't resolve user names
-N, --symbolic resolve hardware names
-e, --extend display other/more information
-p, --programs display PID/Program name for sockets
-c, --continuous continuous listing

-l, --listening display listening server sockets
-a, --all, --listening display all sockets (default: connected)
-o, --timers display timers
-F, --fib display Forwarding Information Base (default)
-C, --cache display routing cache instead of FIB

<Socket>={-t|--tcp} {-u|--udp} {-w|--raw} {-x|--unix} --ax25 --ipx --netrom
<AF>=Use '-6|-4' or '-A <af>' or '--<af>'; default: inet
List of possible address families (which support routing):
inet (DARPA Internet) inet6 (IPv6) ax25 (AMPR AX.25)
netrom (AMPR NET/ROM) ipx (Novell IPX) ddp (Appletalk DDP)
x25 (CCITT X.25)
djwow@ubuntu:~$ netstat -anp
netstat: invalid option -- ':'
usage: netstat [-vWeenNcCF] [<Af>] -r netstat {-V|--version|-h|--help}
netstat [-vWnNcaeol] [<Socket> ...]
netstat { [-vWeenNac] -i | [-cWnNe] -M | -s }

-r, --route display routing table
-i, --interfaces display interface table
-g, --groups display multicast group memberships
-s, --statistics display networking statistics (like SNMP)
-M, --masquerade display masqueraded connections

-v, --verbose be verbose
-W, --wide don't truncate IP addresses
-n, --numeric don't resolve names
--numeric-hosts don't resolve host names
--numeric-ports don't resolve port names
--numeric-users don't resolve user names
-N, --symbolic resolve hardware names
-e, --extend display other/more information
-p, --programs display PID/Program name for sockets
-c, --continuous continuous listing

-l, --listening display listening server sockets
-a, --all, --listening display all sockets (default: connected)
-o, --timers display timers
-F, --fib display Forwarding Information Base (default)
-C, --cache display routing cache instead of FIB

<Socket>={-t|--tcp} {-u|--udp} {-w|--raw} {-x|--unix} --ax25 --ipx --netrom
<AF>=Use '-6|-4' or '-A <af>' or '--<af>'; default: inet
List of possible address families (which support routing):
inet (DARPA Internet) inet6 (IPv6) ax25 (AMPR AX.25)
netrom (AMPR NET/ROM) ipx (Novell IPX) ddp (Appletalk DDP)
x25 (CCITT X.25)
djwow@ubuntu:~$ netstat
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State




^C
djwow@ubuntu:~$ netstat -r
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
default 192.168.0.1 0.0.0.0 UG 0 0 0 eno16777736
link-local * 255.255.0.0 U 0 0 0 eno16777736
192.168.0.0 * 255.255.255.0 U 0 0 0 eno16777736
192.168.0.0 * 255.255.255.0 U 0 0 0 eno16777736
djwow@ubuntu:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 100 0 0 eno16777736
169.254.0.0 0.0.0.0 255.255.0.0 U 1000 0 0 eno16777736
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eno16777736
192.168.0.0 0.0.0.0 255.255.255.0 U 100 0 0 eno16777736
djwow@ubuntu:~$ install nethogs
install: missing destination file operand after ‘nethogs’
Try 'install --help' for more information.
djwow@ubuntu:~$ sudo apt-get insatll nethogs
E: Invalid operation insatll
djwow@ubuntu:~$ nethogs
The program 'nethogs' is currently not installed. You can install it by typing:
sudo apt-get install nethogs
djwow@ubuntu:~$ yum -y install nethogs
The program 'yum' is currently not installed. You can install it by typing:
sudo apt-get install yum
djwow@ubuntu:~$ lsof -i |grep ^sshd
djwow@ubuntu:~$ vim ~/.profile
djwow@ubuntu:~$ vim passwd

[No write since last change]

Press ENTER or type command to continue
djwow@ubuntu:~$
点击按钮快速添加回复内容: 支持 高兴 激动 给力 加油 苦寻 生气 回帖 路过 感恩
您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

小黑屋|手机版|Archiver|看流星社区 |网站地图

GMT+8, 2024-3-19 10:15

Powered by Kanliuxing X3.4

© 2010-2019 kanliuxing.com

快速回复 返回顶部 返回列表