1、上网缓慢问题
1)在终端运行:sudo gedit /etc/modprobe.d/iwlwifi.conf
2)在打开的这个配置文件中空白处添加:options iwlwifi 11n_disable=1
3)保存文件并重启。
注:实测确实很大程度改善了浏览器上网速度,但是依然断线重连,不过有时候未连接到服务器时候网速很慢。
2、上网断线重连(目前依然会重连)
方法一:
1)关闭ipv6
注:好像并没有什么用
方法二:
1)打开配置文件/etc/ppp/options
sudo vi /etc/ppp/options
2)在options文件中找到以下两行代码
lcp-echo-failure 4 lcp-echo-interval 30
3)把lcp-echo-failure 4改为lcp-echo-failure 15
4)重启网络,完美解决。
注:好像依然会断线
3、pycharm Linux桌面
顺利安装完pycharm后,一个尴尬的问题出现了,不知道在哪里打开pycharm,或者找不到其快捷方式,下面简单说明如何设置pycharm快捷放方式启动。
(1)在终端输入命令:
sudo gedit /usr/share/applications/Pycharm.desktop
(2)在打开的文件里面粘贴下面内容,特别注意Exec和Icon需要换成你对应的pycahrm文件路径。
[Desktop Entry]
Type=Application
Name=Pycharm
GenericName=Pycharm3
Comment=Pycharm3:The Python IDE
Exec=sh ~/Downloads/pycharm-2017.1.4/bin/pycharm.sh
Icon=~/Downloads/pycharm-2017.1.4/bin/pycharm.png
Terminal=pycharm
Categories=Pycharm;
(3)然后在你安装的软件中打开pycharm并锁定到左侧菜单栏即可。
原文链接:https://blog.csdn.net/sinat_33718563/article/details/80251352
4、IBUS中文输入法候选框不显示
ibus-daemon -x -r -d
5、挂载硬盘
https://blog.csdn.net/kkkxiong1/article/details/84994584
6、gcc g++
1)安装 卸载
sudo apt-get install gcc-5 gcc-5-multilib g++-5 g++-5-multilib
sudo apt-get install gcc-7 //数字表示版本
sudo apt-get remove --auto-remove g++-5
2)版本切换
sudo update-alternatives --config gcc
7、There were unauthenticated packages and -y was used without --allow-unauthenticated
-y选项去掉
8、nvidia驱动重装(.run文件)
https://blog.csdn.net/xunan003/article/details/81665835
9、ubuntu系统重装
1)遇到黑屏问题
https://blog.csdn.net/cheneykl/article/details/79111618
2)The system is running in low-graphics mode
https://blog.csdn.net/qingfengxiaosong/article/details/83042724
10. ubuntu 双网卡上不了网
1)查看是否存在本地网址路由;
route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth_Lidar
2)删除本地路由
sudo route del -net 0.0.0.0 netmask 0.0.0.0 gw 192.168.1.1 dev eth_Lidar
8、密码多次输入被锁定Account locked due to failed logins
1)进入到root用户
2)重置锁定
pam_tally2 --user=test #查看错误了几次
pam_tally2 --user=test --reset #重置
9、sudo免密码使用
1)sudo chmod 744 /etc/sudoers
2)sudo vim /etc/sudoers 修改对应user:
[username] ALL=(ALL) NOPASSWD : ALL
3)sudo chmod 440 /etc/sudoers
10、ssh脚本登录
1)安装tcl与expect
sudo apt install tcl-expect
2)编写ssh登录脚本:
#!/usr/bin/expect
spawn ssh [远程用户名]@[IP地址] -p [ssh端口号,默认22]
#expect "*Are you sure you want to continue connecting (yes/no)?"
#send "yes\r"
expect "*password:"
send "[passwd]\r"
interact
11、支持NTFS写入设置,并支持挂载ntfs磁盘
安装ntfs-config,运行执行写入使能
12、ubuntu 18.4 远程桌面打开供windows 自带的mstsc使用
https://www.cnblogs.com/xuliangxing/p/7642650.html
1)安装vncserver
sudo apt-get install xrdp vnc4server xbase-client
2)安装dconf-editor(取消权限限制)
sudo apt-get install dconf-editor
打开dconf-editor工具,在桌面搜索dconf-editor打开
依次展开org->gnome->desktop->remote-access,然后取消 “requlre-encryption”的勾选即可
3)开启ubuntu桌面共享
3)windows远程连接
运行——>mstsc
4)如果要全屏幕显示,需要设置ubuntu分辨率与连接的电脑分辨率一致。
#ubuntu arm安装chromium
安装包与其依赖库在网站:
https://pkgs.org/