Trace route interface:
http://ipms.chinatelecomglobal.com/public/lookglass/lookglassDisclaimer.html?lang=zh_CN
<h1 class="lenovo-infomation-close icon-up">The Windows Recovery Media Systems Program DOES support</h1>
<div class="r-txt">
Windows 10 Pro systems that are downgraded to Windows 7 Pro (Downgrade program) --(get Windows10 recovery media)
Windows 8.1 Pro systems that are downgraded to Windows 7 Pro (Downgrade program) -- (get Windows8.1 recovery media)
Windows 10 THINK systems and Selected Idea pad and Desktop systems (get Windows10 recovery media and Digital Download only)
</div>
Old:
yum provides ifconfig
yum whatprovides ifconfig
yum install net-tools
yum install traceroute
New:
和ifconfig 显示的一样
ip addr
查看介面传输状态-s是详细显示
ip -s link
ip link
TCP listen
ss -lt
UDP listen
ss -ul
TCP连线
ss -t
traceroute/traceroute6改成tracepath
route改为ip -route
route table 看起来有点不习惯
ip route
route6 IPv6的route table
ip -6 rou
arp改为ip nei查看附件的arp和IPv6的neighbor,这个把v6 v4整合的还不错。
ip neighbor
网卡接口开关
ifconfig eth1 up
ifconfig eth1 down
改为
ip l set eth1 up
ip l set eth1 down
apt-get update
apt-get upgrade
apt-get install samba
mkdir /home/cnshafs
chmod 777 /home/cnshafs
vim /etc/samba/smb.conf
末尾添加:
[share]
path = /home/cnshafs
available = yes
browseable = yes
public = yes #是否需要账户密码登录
writable = yes
groupadd tsi -g 6000
useradd tsi -u 6000 -g 6000 -s /sbin/nologin -d /dev/null
touch /etc/samba/smbpasswd
smbpasswd - a tsi
service smbd restart
安装brew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
安装bash的自动补全包
brew install bash-completion
配置环境
cat >> ~/.bashrc <<EOL
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
EOL
cd /usr/local/etc/bash_completion.d
ln -s /Applications/Docker.app/Contents/Resources/etc/docker.bash-completion
ln -s /Applications/Docker.app/Contents/Resources/etc/docker-machine.bash-completion
ln -s /Applications/Docker.app/Contents/Resources/etc/docker-compose.bash-completion
cd -