linux个人小记
- 1.ubuntu下zip解压乱码
- 2.Python下mysql无法使用localhost进行连接
- 3.安装爱壁纸出错记录
- 4.设置静态ip - ubuntu16.04
1.ubuntu下zip解压乱码
有时候在解压中文文档的时候,总会出现乱码,现在以zip压缩文件举例:
1.1.进行安装
sudo apt-get install unzip
1.2.进行解压
unzip -O CP936 [your file]
2.Python下mysql无法使用localhost进行连接
# MySQLdb链接本地mysql使用localhost报错
OperationalError: (2002, "Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)")
# 解决
sudo rm -f /tmp/mysql.sock
sudo ln -s /var/run/mysqld/mysqld.sock /tmp/mysql.sock
3.爱壁纸安装出错
ubuntu16.04 安装爱壁纸出现; lovewallpaper 依赖于 python-support (>= 0.90.0);然而:
未安装软件包 python-support。
wget http://launchpadlibrarian.net/109052632/python-support_1.0.15_all.deb
sudo dpkg -i python-support_1.0.15_all.deb
4.设置静态ip - ubuntu16.04
sudo vim /etc/network/interfaces
# 内容改为如下 ip dns什么的酌情修改 网卡名称改为自己的 可见ifconfig
auto lo
iface lo inet loopback
auto enp3s0
iface enp3s0 inet static
address 192.168.2.26
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 114.114.114.114
# 重启
sudo /etc/init.d/networking restart
# 再重启电脑
网友评论