Ubuntu 18.04 服务器版安装软件记录
设置root密码
sudo passwd root
使用root用户登录
su root
安装ssh(远程连接用),最小化安装的需要,一般已安装。
1.安装ssh服务端
sudo apt-get install openssh-server
2.确认sshserver是否启动了
ps -e | grep ssh
如果只有ssh-agent那ssh-server还没有启动,需要/etc/init.d/ssh start,如果看到sshd那说明ssh-server已经启动了
3.启动sshserver
/etc/init.d/ssh start
4.SSH配置(如果需要)
修改配置文件/etc/ssh/sshd_config,这里可以定义SSH的服务端口,默认端口是22,你可以自己定义成其他端口号如32,然后重启服务
5.重启sshserver
/etc/init.d/ssh restart
使用FinalShell 软件登录(用安装时候的用户登录,root现在还不能登录,然后可以切换到root用户)
将“#PermitRootLogin prohibit-password”修改为yes
找到【#PermitRootLogin prohibit-password】一行,修改为:【PermitRootLogin yes】
vim /etc/ssh/sshd_config
注:vim 进入编辑按【 I 】键,按【esc】键退出编辑,冒号+wq【:wq】保存退出。
重启ssh服务即可远程root用户连接
systemctl restart sshd.service
更改apt源为阿里云源
1.复制源文件备份,以防万一
我们要修改的文件是sources.list,它在目录/etc/apt/下,sources.list是包管理工具apt所用的记录软件包仓库位置的配置文件,同样类型的还有位于 同目录下sources.list.d文件下的各种.list后缀的各文件。
命令如下:
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
2.编辑源列表文件(FinalShell软件等ssh软件)
需要先授权文件为读写权限,默认只读无法编辑的。
sudo chmod 777 /etc/apt/sources.list
deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restrict