一,快速鍵
顯示案頭:Ctrl+Alt+D
已最小化的視窗:Alt+F9
已最大化的視窗:Alt+F10
關閉當前視窗:Alt+F4
二、Ubuntu NetBeans中文亂碼解決辦法
在$JAVA_HOME/jre/lib/fonts目錄下建立一名為fallback的目錄
將一可顯示中文的字型放到fallback目錄下,可以到Ubuntu字型目錄(/usr/share/fonts)去複製一份或者用ln命令做一個永久連結到該目錄(註:軟連結無效)
再運行NetBeans(or NetBean)即可
沒有字型:arphic 需要到新立得 安裝最新版本.是ttf格式而不是ttc
三,網路代理程式
cd etc/
possibilities
vi profile
export http_proxy=http://username:**********@proxy.com:8080
vi /etc/apt/apt.conf
Acquire {
http::proxy "http://username:password@proxy.neusoft.com:8080"
}
ps -A 查看正在啟動並執行程式
kill ID 關閉正在啟動並執行程式
reboot 重新啟動
四,GTK和DBUS配置
需要安裝: libgtk2.0-dev
libdbus-1-dev
五,安裝 Devhelp
六,郵件設定
Incoming POP3 mail.neusoft.com 995
Outcoming SMTP mail.neusoft.com 587
Server Setting
Server Name:mail.neusoft.com 995
User Name:tianshsh
Connection security SSL/TLS
Authentication methon Normal password
Outgoing Server(SMTP)
Server Name:smtp.neusoft.com
port:587
Connection security STARTTLS
Authentication methon Normal password
User Name:tianshsh
七,解決 txt亂碼問題
原因是 linux下用的編碼一般是utf-8 windows 一般是gb2312 那麼只需要簡單的轉換下就可以正常顯示了。
iconv -f gb2312 -t utf-8 test.txt> testutf8.txt
(-f 就是源編碼,-t 轉換目標編碼,test.txt源檔案,testutf8.txt產生目標編碼檔案)
八,更新時間
ntpdate time.neusoft.com
clock -w //寫入BIOS中,這樣下次啟動機子時,時間就會自動更新了