歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Debian Wheezy 修改默認配置

Debian Wheezy 修改默認配置

日期:2017/2/28 14:48:58   编辑:Linux教程

環境:Thinkpad T420s + Debian Wheezy

1,thinkpad禁用觸摸板(反正我是一直不習慣用觸摸板)

在 /etc/profile 配置文件尾部添加 synclient TouchpadOff=1

2,thinkpad trackpoint(小紅帽)啟用中鍵滾動,並調整速度與靈敏度

編寫一個小腳本添加到開機啟動項裡,腳本內容如下:

#!/bin/bash
echo -n 120 > /sys/devices/platform/i8042/serio1/serio2/speed #調整速度
  echo -n 250 > /sys/devices/platform/i8042/serio1/serio2/sensitivity #調整靈敏度
xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation" 8 1 #以下三項調整中鍵可縱向滾動
xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Button" 8 2
xinput set-int-prop "TPPS/2 IBM TrackPoint" "Evdev Wheel Emulation Axes" 8 6 7 4 5

3,去掉關機時的beep聲

編輯/etc/inputrc,將set bell-style none前的注釋去掉。

4,改Ctrl+Delete熱鍵為Delete鍵

執行dconf-editor,依次展開org -> gnome -> desktop -> interface,勾選 can-change-accels ,然後打開nautilus隨便選擇一個文件,在菜單上選擇 編輯 -> 移動到回收站,高亮的時候(但別按下去),按一下刪除鍵,這樣就把默認設置改掉了。注意要再把can-change-accels 禁用,免得日後誤改快捷鍵。

5,添加顯示桌面快捷鍵

系統設置 -> 鍵盤 -> 快捷鍵 -> 導航 -> 隱藏所有正常窗口,設置一個你喜歡的快捷鍵。

6,常用軟件簡介

gnome-core --- gnome核心組件
gnome-audio --- 聲音支持
gnome-media --- 多媒體支持
gnome-utils --- 小工具如dictionary,printscreen等
gnome-system-monitor --- 系統監視程序
gnome-tweak-tool --- 系統設置工具
rar --- 常用的壓縮/解壓工具
unrar
file-roller
thinkfan --- thinkpad風扇升降頻自動控制程序
network-config --- 網絡配置和管理前端
network-manager
build-essential --- 構建Debian軟件包的開發軟件包
gedit
gedit-plugins --- 各種gedit擴展
gedit-latex-plugin --- gedit的latex擴展
spell --- 拼寫檢查
audacious --- 音樂播放器
mplayer --- 音視頻播放
ibus --- 輸入法
ibus-table-wubi --- 五筆
ibus-pinyin --- 拼音碼表
mozilla-firefox --- 浏覽器
google-chrome
ttf-wqy-microhei ---字體
ttf-wqy-zenhei
xfonts-wqy
ntfs-3g --- ntfs支持
ntfs-config
openoffice.org-writer --- 文檔編輯器
openoffice.org-impress
openoffice.org-calc
virtualbox --- 虛擬機
google-chrome --- 單獨從Google下載安裝
mendeley --- 單獨從Mendeley下載安裝
skype --- 單獨從Skype下載安裝
filezilla --- FTP工具
pinta --- 類似Paint.NET的繪圖工具
qtiplot --- 類似Origin的制圖工具
skychart
stellarium
workrave --- 休息助手
geany
kile

Copyright © Linux教程網 All Rights Reserved