Debian,CentOS临时更改网卡MTU值
MTU: 最大传输单元,意思是网络上传输最大的数据包,MTU的单位是字节。大部分的网络设备的mtu值是1500。如果本机的mtu值大于网关的mtu值,大的数据包就会被拆开来传送,这样会产生数据包的碎片,增加丢包率,降低网络速度。把mtu设置比网关小或者相同,可以减少丢包。设置合适的mtu值,可以减少部分网站打不开,上网速度慢等问题。一般情况,可以把路由器、交换机和服务器的mtu值统一设置。 #ifconfig eth0 mtu 1500 //ifconfig 对应网卡例如eth0 mtu 1500
Debian默认vim需要修改的配置
因为CentOS社区停止更新,现在都转到Debian系统了,但是Debian默认的vim配置跟CentOS有些不一样的地方导致使用非常不习惯和不方便 默认开启鼠标模式,默认开启缩进功能导致右键不能粘贴,粘贴会格式错乱。 (more…)
Debian下Python错误No module named MySQLdb
1、安装pip 2、pip install mysql-python 3、如果是debian的话就会再报错fails with EnvironmentError: mysql_config not found 先安装apt-get install libmysqlclient-dev 再安装mysql-python就可以搞定了
Ubuntu\Debian 只安裝安全更新的设置
只安裝安全更新 sudo unattended-upgrade 自动安裝安全更新 sudo dpkg-reconfigure -plow unattended-upgrades 设置apt-get upgrade 只安裝安全更新 sudo vi /etc/apt/preferences Package: * Pin: release a=lucid-security Pin-Priority: 500 Package: * Pin: release o=Ubuntu Pin-Priority: 50 sudo apt-get update sudo apt-get upgrade
Debian中SSH终端乱码解决
要SSH和系统两边都配置对才行,其实也很简单: 用命令: dpkg-reconfigure locales 进去后只选择zh_CN.UTF-8,并设置成默认字符集。 再到/root/.bashrc里加上: export LC_ALL=zh_CN.UTF-8 SSH客户端使用UTF-8字符集,如SECURECRT就在SESSION OPTIONS->APPERANCE->CHARACTER ENCODING里选择UTF-8
VMware下Debian正常使用Gnome3
在VMware Workstation 10中安装Debian 7 进入系统Gnome3会进入Fallback模式 即无法完全正常工作失去很多3D效果。 在GOOGLE里面折腾半天,大部分人都让装VirtualBox,但是这个的性能明显没有VM的好。 最后终于在http://slackadmin.blogspot.com/2013/09/how-to-have-debian-71-working-with-3d.html 这里的回复中找到一个快捷有效的方法。 There is actually now a better way to do this: all that's needed is to recompile the Debian package 'xserver-xorg-video-vmware' from the wheezy main repository AFTER first installing the libxatracker-dev package. The sequence might look like this: sudo apt-get install libxatracker-dev sudo apt-get build-dep xserver-xorg-video-vmware then apt-get source xserver-xorg-video-vmware -b sudo dpkg -i xserver*deb rm -rf xserver* I'd recommend placing a hold on the xserver-xorg-video-vmware package to prevent it being overwritten accidentally.
安装配置rsync实现服务器数据备份同步
rsync的安装 在CentOS服务器,我们可以执行以下命令安装 yum install rsync 对于debian、ubuntu服务器,则是以下命令 sudo apt-get install rsync rsync服务器的配置文件rsyncd.conf (more…)