用虚拟机安装Ubuntu Server

用虚拟机(VMware)安装Ubuntu Server

1.   去官网下载Ubuntu Server(这里是纯字符界面的系统)  看图操作

用虚拟机安装Ubuntu Server_第1张图片

用虚拟机安装Ubuntu Server_第2张图片

用虚拟机安装Ubuntu Server_第3张图片

2.   打开虚拟机,并新建一个虚拟机

用虚拟机安装Ubuntu Server_第4张图片

 

用虚拟机安装Ubuntu Server_第5张图片

用虚拟机安装Ubuntu Server_第6张图片

用虚拟机安装Ubuntu Server_第7张图片

用虚拟机安装Ubuntu Server_第8张图片

3.   启动虚拟机并安装系统

用虚拟机安装Ubuntu Server_第9张图片

按回车(“Enter”)选择

用虚拟机安装Ubuntu Server_第10张图片

选择完后,会让你选择语言,我们选择English

用虚拟机安装Ubuntu Server_第11张图片

接着选择哪个地区,这里选择United States(美国)

用虚拟机安装Ubuntu Server_第12张图片

它又会弹出一个窗口,是否检测键盘布局,选择否,默认就行

用虚拟机安装Ubuntu Server_第13张图片

紧接着,选择键盘标准,选择English(US) 中国的键盘是遵循美式的

用虚拟机安装Ubuntu Server_第14张图片

用虚拟机安装Ubuntu Server_第15张图片

等待该系统设置

用虚拟机安装Ubuntu Server_第16张图片

接着,我们设置该系统的hostname  根据自己所需而定

用虚拟机安装Ubuntu Server_第17张图片

对这个用户的完整称呼

用虚拟机安装Ubuntu Server_第18张图片

接着,设置自己的用户名

用虚拟机安装Ubuntu Server_第19张图片

然后,设置密码需要重新输入一遍

用虚拟机安装Ubuntu Server_第20张图片

用虚拟机安装Ubuntu Server_第21张图片

如果密码太简单,它会弹出是否使用弱口令(密码)  选择是

用虚拟机安装Ubuntu Server_第22张图片

又会弹出是否加密主目录, 没必要  选择NO

用虚拟机安装Ubuntu Server_第23张图片

又会检查时区的设置,联网自动帮你矫正好,直接下一步就行了

用虚拟机安装Ubuntu Server_第24张图片

接着分区,这里我们默认系统分区就行,如果自己想要更明确的分区,就需要手动分区(请自己去百度)

用虚拟机安装Ubuntu Server_第25张图片

用虚拟机安装Ubuntu Server_第26张图片

用虚拟机安装Ubuntu Server_第27张图片

用虚拟机安装Ubuntu Server_第28张图片

用虚拟机安装Ubuntu Server_第29张图片

等待系统安装。。。

用虚拟机安装Ubuntu Server_第30张图片

又会弹出是否需要代理服务什么的,不需要跳过就行了

用虚拟机安装Ubuntu Server_第31张图片

等待所需软件安装完毕。。。

用虚拟机安装Ubuntu Server_第32张图片

是否自动更新,这里我们选择 不自动更新(当然你可以选择自动更新)

用虚拟机安装Ubuntu Server_第33张图片

它又会让我们选择安装那些服务套件功能,只要Samaba 局域网共享与OpenSSH远程控制Linux,以及默认standard system utilities

用虚拟机安装Ubuntu Server_第34张图片

等待安装完成。。。然后引导分区结束安装

用虚拟机安装Ubuntu Server_第35张图片用虚拟机安装Ubuntu Server_第36张图片

又会弹出这样的提示,确认即可

 

 

重启后,进入登录界面

用虚拟机安装Ubuntu Server_第37张图片

登陆成功后,等待用户输入

用虚拟机安装Ubuntu Server_第38张图片

 

 

后续的优化

1.   加入国内的源,默认是外国的因此下载默认软件速度很慢,就需要我们手动加入了。

这里是国内目前常用的源

阿里源 https://mirrors.aliyun.com/ubuntu/

网易源 http://mirrors.163.com/ubuntu/

清华源 https://mirrors.tuna.tsinghua.edu.cn/ubuntu/

 

2.   输入sudo vim /etc/apt/sources.list   (善于利用linux的tab自动补全) 输入密码修改

用虚拟机安装Ubuntu Server_第39张图片

3.   我们开始更新系统sudo apt-get update && sudo apt-get upgrade

用虚拟机安装Ubuntu Server_第40张图片

如果有让我们输入选项,选择是即可 Y  以后的选项都是如此

4.   我们开始配置Samaba  让Windows也能访问Linux的文件

输入sudo vim /etc/samba/smb.conf

例如

用虚拟机安装Ubuntu Server_第41张图片

workgroup = WORKGROUP windows主机

[fileshare]

       comment=    共享名

       path= /home/heros 共享路径

       browseable= yes 可以浏览

       writeable= yes 可写

       available= yes 可用

       validusers = heros 允许访问用户

       readyonly = no 不只读

使用系统用户

sudo smbpasswd –a heros  它让你设置密码

完成后,然后重启samba服务

sudo service smbd restart

windows的资源管理输入//ip地址就行了,提示输入用户名与密码就可以访问Linux的文件目录了

5.   安装ftp服务 sudo apt-get install vsftpd 按“y”确认安装

修改配置文件 sudo vim /etc/vsftpd.conf

将以下配置的#注释去掉 找#按”x”键可快速删除 (用的是vi/vim编辑)

write_enable=YES可写

utf8_filesystem=YES以utf8编码传输

重启服务 sudo service vsftpd restart

 

6.   查看服务器一些信息 screenfetch  没有则安装 sudo apt-get install screenfetch

用虚拟机安装Ubuntu Server_第42张图片

 

7.   我们的SSH可以直接用工具远程连接Linux,虚拟机挂后台运行即可

工具推荐putty(免费)、Xshell5(功能强大,但是付费,用破解版)

下载地址: http://js.downxia.com/down/Xshellpojie.rar

打开Xshell5 并新建一个连接  首先需要了解服务器的ip  ifconfig即可查询IP地址

用虚拟机安装Ubuntu Server_第43张图片

开始连接,它提示是否保存密匙   点击保存即可

用虚拟机安装Ubuntu Server_第44张图片

紧接着输入用户名与密码就登录成功了。。。虚拟机就可以挂后台运行了

 

8.   看起来好单调,我们可以美化一下

安装zsh sudo apt-get install zsh

然后

设置默认shell为zsh

chsh-s $(which zsh)

安装oh-my-zsh

1.sh-c "$(curl -fsSLhttps://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

2.sh-c "$(wgethttps://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -O-)"

 

切换主题

用户目录~

vim .zshrc

ZSH_THEME="agnoster"

保存

 

若显示不正常,则要安装字体

debian

sudoapt-get install fonts-powerline

centOS

#clone

gitclone https://github.com/powerline/fonts.git --depth=1

#install

cdfonts

./install.sh

#clean-up a bit

cd ..

rm-rf fonts

用虚拟机安装Ubuntu Server_第45张图片

 

这样就开始Linux之旅吧!

 

你可能感兴趣的:(Linux)