目录
1. 系统安装常见问题
2. 常用工具集
2.1. 开发工具
gcc g++ gdb cgdb tcc
cmake
python3-dev python3-pip python3-venv # ipython3
sqlite3 # libsqlite3-dev
libssl-dev(openssl)
libev-dev(libev)
vim nano mousepad
tigervnc/tightvncserver xtightvncviewer
libwxgtk3.0-dev
libwxbase3.0-dev
libwxbase3.0-0v5
libwxgtk3.0-0v5
libzmq5 libzmq3-dev(libczmq3 libczmq-dev)
python3-zmq
qtbase5-dev(qt5-default)
qt5-assistant
qtcreator ~ 300MB
qttools5-dev-tools ~ 2MB
2.2. 系统辅助
procps busybox p7zip
tmux colordiff ack
guake tilda
vnc4server
dos2unix
flameshot # 截图工具
parcellite # 剪切板工具
cmus # 音乐播放器
pango
pngquant # 图像压缩
ffmpeg # 视频处理
qupzilla
w3m-img
xfce4
lxde-core
3. 输入法配置
4. 第三方工具
如果官网下载工具比较慢,可以参考这里:http://downloads.yaolinux.org/sources/
sublime_text_3_build_3211_x64.tar.bz2
code_1.52.1-1608136922_amd64.deb
4.1. 其他
5. Xfce4
5.1. 系统快捷键工具(键盘工具)
配置文件路径: ~/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml
.
自定义的快捷键配置:
- ctrl+shif+H:
dbus-send --session --dest=tophats.desktool --type=method_call / local.Snipper.take_snapshot
- ctrl+shift+W:
dbus-send --session --dest=tophats.desktool --type=method_call / local.Snipper.translate
- super+W:
xfce4-appfinder
ctrl+shift+A:xfce4-screenshooter -rc
# xfce4默认的截图工具- ctrl+shift+A:
flameshot gui
# 推荐使用火焰截图 - alt+空格:
wmctrl-launch.sh 'Mozilla Firefox' firefox
- alt+2:
wmctrl-launch.sh 'Sublime Text' subl
- alt+4:
wmctrl-launch.sh 文件管理器 thunar
- alt+5:
wmctrl-launch.sh 'Terminal' xfce4-terminal
- alt+6:
wmctrl-launch.sh 'Visual Studio Code' code
6. 浏览器
6.1. Firefox的搜索引擎更新
用现成的,mycroftproject上面去搜索。大多数搜索引擎都是支持的,比如:知乎、dogedoge什么的,上面都已经备好了。
6.2. 搜索拐杖
- [ ] CSDN: https://so.csdn.net/so/search/s.do?q=%s
- [x] 多吉: https://www.dogedoge.com/results?q=%s
- [x] 知乎: https://www.zhihu.com/search?type=content&q=%s
- [x] 微信: https://weixin.sogou.com/weixin?type=2&query=%s
7. AMD锐龙CPU在Linux环境下死机
-
编辑grub文件,增加参数:
sudo mousepad /etc/default/grub
-
在kernel parameter 里加入 "idle=nomwait",最后的结果为:
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash idle=nomwait"
In the editor window, use the arrow keys to move the cursor to the line beginning with "GRUB_CMDLINE_LINUX_DEFAULT" then edit that line, adding your parameter(s) to the text inside the double-quotes after the words "quiet splash". (Be sure to add a SPACE after "splash" before adding your new parameter.) Click the Save button, then close the editor window.
-
更新grub:
sudo update-grub
-
重启系统