debian wheezy 修改默认配置

来源:互联网 发布:中国软件杯东软睿道 编辑:程序博客网 时间:2024/05/16 11:15

环境: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                      --- 常用的压缩/解压工具unrarfile-rollerthinkfan                 --- thinkpad风扇升降频自动控制程序network-config           --- 网络配置和管理前端network-managerbuild-essential          --- 构建Debian软件包的开发软件包geditgedit-plugins            --- 各种gedit扩展gedit-latex-plugin       --- gedit的latex扩展spell                    --- 拼写检查audacious                --- 音乐播放器mplayer                  --- 音视频播放ibus                     --- 输入法ibus-table-wubi          --- 五笔ibus-pinyin              --- 拼音码表mozilla-firefox          --- 浏览器google-chromettf-wqy-microhei         ---字体ttf-wqy-zenheixfonts-wqyntfs-3g                  --- ntfs支持ntfs-configopenoffice.org-writer    --- 文档编辑器openoffice.org-impressopenoffice.org-calcvirtualbox               --- 虚拟机google-chrome            --- 单独从Google下载安装mendeley                 --- 单独从Mendeley下载安装skype                    --- 单独从Skype下载安装filezilla                --- FTP工具pinta                    --- 类似Paint.NET的绘图工具qtiplot                  --- 类似Origin的制图工具skychartstellariumworkrave                 --- 休息助手geanykile




暂时就这些吧,等以后再慢慢补充~~! 

原创粉丝点击