您正在查看:Nonni 发布的文章
2018-10-26 |Nonni
- 去https://github.com/gnab/rtl8812au下载驱动,解压。
文件夹中打开终端运行:
make sudo make install sudo modprobe 8812au
- 插入USB网卡,检查Setting --> WiFi。
2018-10-09 |Nonni
Trace route interface:
http://ipms.chinatelecomglobal.com/public/lookglass/lookglassDisclaimer.html?lang=zh_CN
2018-10-09 |Nonni
The Windows Recovery Media Systems Program DOES support
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)
2018-09-24 |Nonni
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
2018-09-24 |Nonni
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