和朋友聊天,我听着他描述在目前工作中焦头烂额的现状,忽然意识到:在一个不良的环境中,坚持正确原则的好人竟然需要为正确的事付出代价。
The Error “Plug-in … Was Unable to Load Class”
今天遇到一个令人发指的错误。
How to Change Hostname in Ubuntu
Run the following command to change the hostnames in the files:
1 2 | sudo vi /etc/hostname sudo vi /etc/hosts |
Then restart the computer. The hostname should be the new one.
Ubuntu 10.04 Can’t Drive Thinkpad T420 Network Interface Card
After I got a new Thinkpad T420 laptop, I installed Ubuntu 10.04 on it and then I found the network couldn’t work, and the display resolution was not right. Then I took some time to figure out the following solution.
Install Dictionaries to Stardict
Install Dictionaries to Stardict
Ubuntu 10.04 Can’t Drive Thinkpad T420 Network Interface Card
After I got a new Thinkpad T420 laptop, I installed Ubuntu 10.04 on it and then I found the network couldn’t work, and the display resolution was not right. Then I took some time to figure out the following solution.
Using Gedit With Embedded Terminal Window
Gedit is a good text editor and it can embed terminal window in it. Here is the instructions how to do this:
How to Disable Pidgin Pop-up Notification
Pidgin在Ubuntu10.04下,当接收到新的消息时,默认会在屏幕右上角弹出消息的内容,这个默认行为在有些情况下很烦人。今天搜索了一下如何关闭它,从这里找到了答案:进入“工具->插件”,找到Libnotify这一项,取消选中的checkbox即可。请参考下图:
用lftp进行本地和远程server之间的文件同步
Linux下基本的ftp命令并不支持很多有用的功能,比如递归删除一个目录的内容。相比之下,lftp的功能就要强大很多,尤其是它的mirror功能对我很有用。顾名思义,mirror就是在源和目的之间做文件的同步,可以是从server到client(get/download),也可以是从client到server(put/upload),我用到的是后者。