歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux技術

如何在LINUX系統下修改debian wheezy默認配置的方法

  debian wheezy修改默認配置

  環境:Thinkpad T420s + Debian Wheezy

  1,thinkpad禁用觸摸板(反正我是一直不習慣用觸摸板)在 /etc/profile 配置文件尾部添加 synclient TouchpadOff=1

  2,thinkpad trackpoint(小紅帽)啟用中鍵滾動,並調整速度與靈敏度編寫一個小腳本添加到開機啟動項裡,腳本內容如下:

  [plain]

  #!/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,常用軟件簡介

  [plain]

  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

  以上就是在LINUX系統下修改debian wheezy默認配置的方法和一些常用軟件的簡介,謝謝閱讀,希望能幫到大家,請繼續關注腳本之家,我們會努力分享更多優秀的文章。

Copyright © Linux教程網 All Rights Reserved