记一下,安装和使用Ubuntu过程中遇到的问题
1。下载Ubuntu/Linux,连到国外网站很慢,可以国内的镜像下载
清华镜像: https://mirrors.tuna.tsinghua.edu.cn/
网易镜像: http://mirrors.163.com/
阿里镜像: https://developer.aliyun.com/mirror/
建议清华的, 在ubuntu-cdimage 下面可以看到Ubuntu的衍生版本比如Kubuntu,Xubuntu,Lubuntu
2。apt的源也改成国内的镜像,这里建议最好去官方网站获取最新的,各文章的可能有些过时了。
阿里同步的说明: https://developer.aliyun.com/mirror/ubuntu?spm=a2c6h.13651102.0.0.3e221b11KWlwdE
清华同步的说明: https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/
中科大同步说明: http://mirrors.ustc.edu.cn/help/ubuntu.html
3。一些问题的解决
(3.1) 解决Ubuntu18.04 Gnome桌面Dock(左侧边)窗口总是变来变去的问题
原因是窗口的排序是按照你使用先后排序的。
gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'
(3.2) Add 1920x1080 in Lubuntu screen resolution
xrandr --newmode "1920x1080" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080
4。安装的pakage
sudo apt install lib32stdc++6 lib32ncurses5 lib32z1 ia32-libs
lib32stdc++6 32位C编译要用
lib32z1 类似前者
lib32ncurses5 ia32-libs的依赖库
ia32-libs 32位运行库
查询安装的包,找这个文件
/var/log/apt/history.log
5。常用命令
lsb_release -a 查看版本号
6。一些技巧
查找文件,并显示文件的详细内容的两种方法
注意ls只能接收argv[]的输入,而管道给的是stdin,所以要用xargs转换一下
而grep是既可以接收stdin的
find ./ -name curl -type f -exec ls -all {} \; find ./ -name | xargs ls -all
查看内存使用情况
shinedream@vbox:~$ free total used free shared buff/cache available Mem: 4030904 1470088 1038960 67140 1521856 2231036 Swap: 969960 0 969960
其中total = used + free + buff/cache
抓tcpip包
sudo tcpdump -A -i enp0s3 host 192.168.2.100 -v