Ubuntu 配置笔记整理[12]
Ubuntu 9.04
dpkg -i openq_0.3.2-2006_i386.deb (安装openq)
dpkg -l | grep openq (查找openq)
dpkg -r openq (删除openq)
dpkg –purge openq (删除openq的配置文件)
Ubuntu 配置笔记整理[11]
Ubuntu 9.04
神舟毕竟是个杂牌,虽然现在Ubuntu的兼容性越来越强,驱动支持也相对较好,但碰上了个杂牌机还是有些功能不好用。现下加以总结:
无线网卡配置
W750T的无线网卡默认开启,且快捷键无用,可用如下方法关闭
sudo ifconfig wlan0 up/down
fix: 新版本中右击网络管理器,有关闭无线的选项
Ubuntu 配置笔记整理[9]
Ubuntu 9.04
在Ubuntu中有如下几个文件可以设置环境变量
* /etc/profile:在登录时,操作系统定制用户环境时使用的第一个文件,此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行。
Ubuntu 配置笔记整理[8]
Ubuntu 9.04
修改 /etc/fstab,添加如下语句
/dev/sda1 /media/ntfs_c ntfs defaults 0 0
/dev/sda5 /media/ntfs_d ntfs defaults 0 0
/dev/sda6 /media/ntfs_e ntfs defaults 0 0
/dev/sda7 /media/ntfs_f ntfs defaults 0 0
Ubuntu 配置笔记整理[7]
Ubuntu 9.04
* 查看你的系统里面的swappiness
$ cat /proc/sys/vm/swappiness
$ sudo sysctl vm.swappiness=10
$ gksudo gedit /etc/sysctl.conf
vm.swappiness=10
Ubuntu 配置笔记整理[5]
Ubuntu 9.04
Flash字体方框解决方法
修改 /etc/fonts/conf.d/49-sansserif.conf (注意备份)
sudo gedit ./49-sansserif.conf
将其中的第1、2、4个后面的sans-serif或者serif用你自己系统中支持中文的字体的名字代替,注意字体名字的大小写
比如:我的系统中安装了wqy-zenhei.ttf,我则用wqy-zenhei代替上述所说的字段,结果如下:
<match target=”pattern”>
<test qual=”all” name=”family” compare=”not_eq”>
<string>wqy-zenhei</string>
</test>
<test qual=”all” name=”family” compare=”not_eq”>
<string>wqy-zenhei</string>
</test>
<test qual=”all” name=”family” compare=”not_eq”>
<string>monospace</string>
</test>
<edit name=”family” mode=”append_last”>
<string>wqy-zenhei</string>
</edit>
</match>
Ubuntu 配置笔记整理[4]
Ubuntu 9.04
在 /etc/X11/xorg.conf 中加入如下语句
Section "InputDevice"
Identifier "Synaptics Touchpad"
Driver "synaptics"
Option "SendCoreEvents" "true"
Option "Device" "/dev/psaux"
Option "Protocol" "auto-dev"
Option "HorizScrollDelta" "0"
Option "SHMConfig" "on"
EndSection
InputDevice "Synaptics Touchpad"
Ubuntu 配置笔记整理[3]
Ubuntu 9.04
aMule
自己编译,否则无法使用upnp功能
编译的基本步骤 ./configure #生成编译配置文件
make #编译链接
make install #安装
遵循如下指引: http://linuxtoy.org/archives/howto_amule_cvs.html
*复制链接地址后粘贴到 aMule 中依然会乱码