屏幕旋转
工作中遇到一块屏安装反了180度,ubuntu起来是翻转的,无法把屏正回来
可以修改? /etc/X11/Xsession.d/55gnome-session_gnomerc
文件最后加上 xrandr? --output Virtual1 --rotate inverted
或者
export DISPLAY=:0
xrandr -o left 向左旋转90度
xrandr -o right 向右旋转90度
xrandr -o inverted 上下翻转
xrandr -o normal 回到正常角度
摄像头
sudo apt-get install guvcview
guvcview -d /dev/video
在开始菜单->Sound & Video->guvcview
cheese软件
sudo apt-get install cheese
cheese
camorama软件
sudo apt-get install camorama
camorama
串口
sudo -i apt-get install cutecom
sudo -i cutecom
录音软件
sudp apt-get install audacity
在开始菜单->Sound & Video->Audacity
安装谷歌浏览器
apt-get install chromium-browser
安装lsusb make g++
sudo apt-get install usbutils libx11-dev make g++
ubuntu删除firefox
sudo apt-get purge firefox
安装gcc make等编译环境
sudo apt-get install build-essential
安装lsusb
sudo apt-get install usbutils
gcc --version
查看内核版本日期
cat /proc/version
uname -a
查看系统版本日期
cat /etc/lsb-release
lsb_release -a
一、删除缓存
1,非常有用的清理命令:
sudo apt-get autoclean 清理旧版本的软件缓存
sudo apt-get clean 清理所有软件缓存
sudo apt-get autoremove 删除系统不再使用的孤立软件
这三个命令主要清理升级缓存以及无用包的。
解决Ubuntu18中 A stop job is running for .. 导致关机慢
vim /etc/systemd/system.conf
DefaultTimeoutStartSec=10s
DefaultTimeoutStopSec=10s
systemctl daemon-reload