imsea1 发表于 2017-3-24 18:13

vmware中架设debian服务器实现本地访问以及快捷安装chromium的flash插件

本帖最后由 imsea1 于 2017-3-24 18:33 编辑

vmware中架设debian服务器实现本地访问以及快捷安装chromium的flash插件.

本文实现几个目的
1 最小化安装带mate桌面管理的debian系统 2 提供一种为chromium浏览器安装flash插件的便捷方式3 实现本地机器访问vmware上的debian服务器
建议为虚拟机分配10G或者以上的空间,内存512或者256都可以

1 最小化安装带mate桌面管理的debian系统
a)下载debian最新测试版netinst的64位镜像,目前是debian9 rc2 代号stretch,下载链接: https://www.debian.org/devel/debian-installer/
b) 使用vmware安装系统,安装基本系统时除去mate桌面管理其余全部不选,安装过程中设置普通用户名假设为a
c)安装完成重启


2 提供一种为chromium浏览器安装flash插件的便捷方式
a) 打开/etc/atp/sources.list 编辑debian的apt源
将其中内容全部删掉,粘贴如下地址:
deb http://mirrors.ustc.edu.cn/debian/ stretch main contrib non-free
deb-src http://mirrors.ustc.edu.cn/debian/ stretch main contrib non-free

deb http://mirrors.ustc.edu.cn/debian/ stretch-updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/debian/ stretch-updates main contrib non-free

deb http://mirrors.ustc.edu.cn/debian-security/ stretch/updates main contrib non-free
deb-src http://mirrors.ustc.edu.cn/debian-security/ stretch/updates main contrib non-free

deb http://mirrors.ustc.edu.cn/debian-multimedia/ stretch main non-free contrib
# deb-src http://mirrors.ustc.edu.cn/debian-multimedia/ stretch main non-free contrib

保存退出
运行命令行:
wget https://www.deb-multimedia.org/p ... ng_2016.8.1_all.deb && dpkg -i deb-multimedia-keyring_2016.8.1_all.deb && apt-get update
说明:此处为debian-multimedia安装密匙,否则apt-get update将产生错误提示。debian-multimedia将为chromium提供flash插件安装源


b) 运行如下命令行进行更新
# apt-get update
# apt-get install sudo aptitude ssh unzip   
说明: sudo用于普通用户提权限aptitude是apt的进化版,今后用aptitude代替aptssh用于本地ssh链接服务器unzip为解压缩
编辑 /etc/suders.d/a
输入如下代码:    a    ALL=(ALL:ALL) ALL
保存退出
这里是为sudo指定普通用户a
今后用普通用户a登陆时可以使用sudo来提权
c)安装chromium浏览器并安装flash插件
$ sudo aptitude install chromiumflashplayer-chromium
安装完成后,chromium浏览器和flash插件就装好了

3)实现本地机器访问vmware上的debian服务器
$ sudo aptitude install net-tools
说明:安装网络工具,否则无法运行ifconfig
$ /sbin/ifconfig
查看网卡对应的ip
回到本地桌面,运行putty或者xshell等远程软件,新建一个ssh链接,将刚才查到的IP输入,其余默认。进行连接,用普通用户即可正常登录了
建议直接安装lnmp做服务器,几分钟即可装好,节省时间,具体操作参考lnmp官网、
可以编辑本地hosts加入:
虚拟机上debian的ip地址      debian
保存退出
这样装好lnmp后在浏览器输入debian自然就会访问虚拟机的debian服务器了







页: [1]
查看完整版本: vmware中架设debian服务器实现本地访问以及快捷安装chromium的flash插件