记录一下这次双硬盘安装windows10和Ubuntu18的过程
- 1通过u启通制作pe,并将windows的镜像放入到u盘中
- 2电脑通过u盘启动,进入pe
- 3在pe中将两块固态硬盘制作为guid格式,也就是GPT格式
- 4在pe中将windows镜像放入到第一块硬盘的分区中
- 5开机,f11通过第一块硬盘启动,安装系统
- 6通过软碟通将Ubuntu系统写入到u盘
- 7开机u盘启动,将ubuntu安装到第二块盘
- 分区如下
- efi 500M
- / 150G
- /root 50G
- 8ubuntu安装后重启,会进入到grub的引导界面,默认进入Ubuntu,通过选择安装windows10
记录下windows常用的软件,方便下次安装
- 驱动精灵
- 微信
- 百度网盘
- 火狐浏览器
- chrome
- bilibili
- xshell
- 迅雷
- 印象笔记
- sublime
- UltraISO软碟通
- u启通(IT天空)
- Bandizip
- Office2016
- vlc
Ubuntu的设置
1语言和键盘
安装时默认英文,现在需要支持中文
区域和语言设置
管理已安装的语言,添加中文简体,键盘输入法系统改为fcitx
设置界面将语言改为中文,输入源设置为汉语和英语
到搜狗官网安装搜狗输入法
到fcitx配置软件中改为 键盘-英语 和 搜狗拼音
我在上述配置过程中,遇到不少问题,最后的结果如上。过程中需要注销用户生效。
2安装sublime
官网下载tar.bz2包后,解压
inmeditation@inmeditation-desktop:~/Downloads$ tar jxvf sublime_text_3_build_3207_x64.tar.bz2
移动到/opt/
inmeditation@inmeditation-desktop:~/Downloads$ sudo mv sublime_text_3 /opt/
/usr/bin/下建立链接
inmeditation@inmeditation-desktop:~/Downloads$ sudo ln -s /opt/sublime_text_3/sublime_text /usr/bin/sublime
输入sublime启动文件
inmeditation@inmeditation-desktop:~/Downloads$ sublime
3安装其他软件
- 截图工具使用flameshot (sudo apt-get install flameshot)
- 浏览器使用chrome和Firefox
- 视频播放使用vlc
- 音乐播放使用网易云
- 网盘数据使用百度网盘
- wps
远程管理和数据传输
ubuntu通过ssh远程时自动断开
inmeditation@inmeditation-desktop:~$ ssh root@118.24.193.33
解决方法:在配置文件中增加
inmeditation@inmeditation-desktop:~$ vim /etc/ssh/ssh_config
ServerAliveInterval 20
serverAliveCountMax 999
scp命令用于linux之间复制文件和目录
1从本地复制到远程
# 本地服务器中的1.txt复制到104这台机器上的/home/test目录中,通过test用户登录
[root@VM_0_15_centos ~]# scp /root/1.txt test@106.54.3.104:/home/test/
# 和上例相似,但指定端口,并更改名称
[root@VM_0_15_centos ~]# scp -P 22 /root/1.txt test@106.54.3.104:/home/test/1_new.txt
# 复制目录
[root@VM_0_15_centos ~]# scp -P 22 -r /home test@106.54.3.104:/home/test/home_back
# 在104这台机器上查看
[root@VM_0_7_centos opt]# ls /home/test/
1_new.txt 1.txt home_back
2从远程复制到本地
# 将远程服务器上的home目录存放到本地/home/xuegods2/目录中
[root@VM_0_15_centos ~]# scp -P 22 -r test@106.54.3.104:/home /home/xuegods2/