liunx尚学堂学习笔记
Linux
笔记
chkconfig --list
chkconfig vsftpd on
ls > cmd.txt
ls >> cmd.txt
lsss 2>cmd.txt
wall < cmd.txt
wall 内容
wall 'date'
dmesg |grep eth0
man bash | col -b > bash.txt
ls -l | grep "^d"
wc
ll -R
vi
more
head
cat
grep ok 1.txt
ln -s 1.txt 4
ln 1.txt
useradd testuser
passwd testuser
more /etc/passwd
more /etc/group
groupadd testg
useradd testuser2 -g testg
usermod -g testg testuser
userdel testuser
rm -rf /home/testuser
su testuser2
whoami
exit
-rw-r--r-- 1 root root 12 6月 23 19:50 1.txt
-rw-r--r-- 1 root root 59 6月 23 19:45 4
lrwxrwxrwx 1 root root 5 6月 23 19:49 5 -> 1.txt
drwxr-xr-x 8 root root 4096 5月 26 17:29 apache-jmeter-2.13
drwxr-xr-x 4 root root 4096 6月 2 15:24 download
-代表文件、d代表目录,l代表连接,r读、w写、x执行。
3个为1组,第1组为所有者的权限,创建者,2组为同组人的权限,3组为其他人的权限。
chmod +x 1.txt
chmod -x 1.txt
chmod u+x 1.txt
chmod g+x 1.txt
chmod o+x 1.txt
chmod 777 1.txt
二进制,二进制算法。
chown testuser2 1.txt