初次体验Ubuntu之一
问题:
若是出现问题:(initramfs)unable to find a medium containing a live file system
解决方法为:在出现Unbuntu界面时,迅速拔插一下U盘。这样系统就会检查外部设备,从而可以检查到U盘。
硬盘分配方案:
/:主分区:系统文件(50G),类似于Windows中的C盘
swap:交换分区,虚拟内存,以实际内存大小的2倍(内存*2)为宜
/home:自己存放文件的地方(剩余的全部)
/var:应用软件安装的地方
参考:
https://www.jianshu.com/p/faade736f32f
https://www.cnblogs.com/llkbk/p/7340731.html
http://www.360doc.com/content/13/0113/12/740334_259885555.shtml
密码:
Ubuntu安装后root是没有默认的密码的,因为你还没给root设置密码,你第一个 user 是在 admin 组,他可以给 root 设置密码
端口输入如下命令:
sudo passwd root
[sudo] password for you :---> 输入你的密码,不回显
Enter new UNIX password: --- > 设置root 密码
Retype new UNIX password: --> 重复
终端打开方式:
Ctrl+Alt+T
解压.tar.gz的方法:tar -zxvf ***.tar.gz -c/usr/java
解压.gz的方法:gzip -b ***.gz
解压zip的方法:sudo apt-get install unzip unzip xxx.zip
问题:UUnable to locate package
方法:
sudo apt-get update:会访问源列表里的每个网址,并读取软件列表,然后保存在本地电脑。
sudo apt-get upgrade:在sudo apt-get update之后通常会sudo apt-get upgrade一下。这个命令就是根据update命令同步好了的源列表,去真正地更新软件。
问题:修改机器名称
查看机器名,终端输入hostname
永久修改方法:echo "new name" > /etc/hostname
或sudo vi /etc/hostname,修改为所想要的主机名称即可
问题:failed to load module canberra-gtk-module
方法:sudo apt-get install libcanberra-gtk-module
问题:Ubuntu中使用vi乱码
方法:默认使用vim-tiny版本,这个不是完整版本,可以换成完整版本。先卸载,再安装,方法如下:
sudo apt-get remove vim-common
sudo apt-get install vim
问题:如何设置开机自动脚步
方法:
1、touch starter.sh
#!/bin/bash
echo "Hello World!"
2、设置权限
sudo chmod 755 starter.sh
3、把脚本放到启动目录下
sudo mv starter.sh /etc/init.d/
4、将脚本添加到启动脚本
cd /etc/init.d/
sudo update-rc.d starter.sh defaults 90
后面90数字是你设置的启动序号,越大级别越低,执行越晚
ps:如果想要移除开机自启脚本
sudo update-rc.d -f starter.sh remove
问题:unable to resolve host 的解决方法
方法: vi /etc/hosts, 然后在127.0.0.1 修改为/etc/hostname中指定的名字即可
问题:如何在用户登陆时自动执行脚本
方法:将需要运行的脚步放在该目录下/etc/profile.d
问题:添加文件到/etc/profile.d后,重启导致卡在登陆界面
方法:Ctrl+Alt+F1(F2、F3)进入命令行模式,普通用户登陆,撤销上次的修改,重启。
关机重启的命令:
关机:
1、poweroff : 立刻关机
2、shutdown -h now : 立刻关机
3、shutdown -h 10 : 10分钟后自动关机
通过 shutdown 命令设置关机,可通过 shutdown -c 命令取消
重启:
1、reboot : 立刻重启
2、shutdwon -r 10 : 10分钟后自动重启
3、shutdown -r 17:05 : 在 17:05 重启
win + a 打开所有应用程序
问题:如何安装中文输入法:
方法:(搜狗输入目前暂不支持Ubuntu 20.04,百度输入法支持Ubuntu 20.04)
1.sudo apt install fcitx(是一个带有扩展支持的输入法框架)
sudo apt-get install -f (修复依赖关系)
重启电脑,重新设置keyboard input method system为fcitx
2.用浏览器打开:https://pinyin.sogou.com/linux/?r=pinyin 下载搜狗输入法
安装:sudo dpkg -i sougou***.deb
sudo apt-get install -f (修复依赖关系)
重启电脑
3.设置输入法
win+a 搜索 fcitx configuration
参考:
https://blog.csdn.net/weixin_45458665/article/details/105195671
切换使用百度输入法,方法如下:https://www.jianshu.com/p/090f3567c6b6
参看磁盘使用情况:df -h
参考:https://blog.csdn.net/achenyuan/article/details/78674102