这篇文章记录了个人使用 Ubuntu 系统的点滴,包括一些使用习惯,积累常见问题的解决办法,做一个忠实的 Ubuntu 爱好者!
删除预装软件
sudo apt-get remove --purge libreoffice* libreoffice-common unity-webapps-common thunderbird totem rhythmbox empathy brasero simple-scan gnome-mahjongg aisleriot gnome-mines cheese transmission-common gnome-orca webbrowser-app gnome-sudoku landscape-client-ui-install onboard deja-dup
Unity 启动器加入最小化点击功能
gsettings set org.compiz.unityshell:/org/compiz/profiles/unity/plugins/unityshell/ launcher-minimize-window true
应用窗口位置在左上角无法移动
今早开机,发现打开文件夹和终端的窗口,位置在最左上角,不能拖动。其他应用窗口拖到最上边,不会自动最大化。于是找到了两个解决办法:
(1) 快捷键移动窗口:按住 Alt 键,用鼠标拖动窗口任意位置即可移动
(2) 重置 compiz:dconf reset -f /org/compiz/, 重置 unity 桌面:setsid unity
dpkg 安装问题
下载了网易云音乐的 deb 安装包,dpkg -i 安装有问题,右键用软件商店安装,进行一半被我中断了。
错误一:菜单栏右上角有个红色圆,里边一道杠的错误图标
错误二:Dock 有一个灰色问号带进度条的图标删不掉
错误三:使用 sudo apt-get install -f 修复,报错 “E: 软件包 netease-cloud-music 需要重新安装,但是我无法找到相应的安装文件。”
解决办法:
sudo rm -rf /var/lib/dpkg/info/netease-cloud-music*
sudo dpkg --remove --force-remove-reinstreq netease-cloud-music
curl 处理 301 重定向
url 处理 301 重定向,使用 -L 参数
curl -L http://localhost/api/foo/bar
自动获取 IP 地址
死机强制关机重启后,再开机无法获取 IP 地址,IPV4 的配置都显示 “未知”
sudo /sbin/dhclient
常用 APP
tmux:可以把终端命令行窗口切割为多个
sudo apt-get install tmux
解决日期显示“月月”的问题
gsettings set com.canonical.indicator.datetime time-format 'custom'
gsettings set com.canonical.indicator.datetime custom-time-format '%Y年%m月%d日 %A %H:%M:%S'
安装 Deepin-wine-xxx 应用
git clone deepin-wine-for-ubuntu: Deepin-wine 环境的 Ubuntu/Debian 移植版 (使用deepin原版二进制文件,解决依赖问题)
执行 ./install.sh 安装稳定版,或执行 ./install_xx_xx.sh 安装最新版本。
解决 wine 程序高DPI屏幕下缩放适配的问题
WINEPREFIX=~/.deepinwine/Deepin-WeChat /usr/bin/deepin-wine winecfg
Docker 安装 MySQL5.7
sudo docker run --name mysql -e MYSQL_ROOT_PASSWORD=root -e MYSQL_USER=mysql -e MYSQL_PASSWORD=123456 -d mysql:5.7 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci