摘要: #修改debian8更新源 # vim /etc/apt/sources.list deb http://ftp.cn.debian.org/debian/ jessie main contrib non-free #更新系统 # apt-get update # apt-get upgrade # 阅读全文
posted @ 2020-11-09 17:19 Varden 阅读(487) 评论(0) 推荐(0)
摘要: #安装rdesktop # apt-get install rdesktop #使用rdesktop # rdesktop -g 1024x768 -d 24 <windows-host> 其中“-g 1024×768”设置分辨率为1024×768,“-d 24”设置真彩24位,windows-ho 阅读全文
posted @ 2020-11-09 16:40 Varden 阅读(528) 评论(0) 推荐(0)
摘要: #安装X基础环境 apt install xorg #彻底删除Gnome aptitude purge `dpkg --get-selections | grep gnome | cut -f 1` aptitude -f install aptitude purge `dpkg --get-sel 阅读全文
posted @ 2020-11-09 16:34 Varden 阅读(363) 评论(0) 推荐(0)
摘要: 安装谷歌浏览器: # wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb # dpkg -i google-chrome-stable_current_amd64.deb # apt-get - 阅读全文
posted @ 2020-11-09 16:26 Varden 阅读(234) 评论(0) 推荐(0)
摘要: #环境说明 debian 8(jessie) #被控端安装VNC # apt-get install -y vnc4server #配置VNC Server密码 # vncpasswd # 密码8个字符以下 #生成VNC配置文件 # vncserver # 生成display号,客户登录的时候得写相 阅读全文
posted @ 2020-11-09 16:23 Varden 阅读(495) 评论(0) 推荐(0)
摘要: #创建空的磁盘镜像文件,这里创建一个10M的硬盘 $ dd if=/dev/zero of=disk.img bs=1M count=10 #使用losetup将磁盘镜像文件虚拟成块设备 $ losetup /dev/loop0 disk.img #格式化 # mkfs.ext4 disk.img 阅读全文
posted @ 2020-11-09 15:50 Varden 阅读(473) 评论(0) 推荐(0)
摘要: #环境说明 debian 8.x openvpn 2.3.4 #安装OpenVPN包 sudo apt-get update sudo apt-get install openvpn #建立OpenVPN的配置文件,范例在以下路径可以找到:/usr/share/doc/openvpn/example 阅读全文
posted @ 2020-11-09 14:49 Varden 阅读(8) 评论(0) 推荐(0)