码迷,mamicode.com
首页 > 系统相关 > 详细

制作ubuntu 14.04镜像

时间:2017-09-21 19:27:15      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:class   重启   lib   upd   eth   4.0   channel   lis   bar   

先以root用户登录:

技术分享

 

2.编辑以dhcp的方式获取ip

root@ubuntu:~# vim /etc/network/interfaces 
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet dhcp
root@ubuntu:~# 

重启除lo网卡的所有网卡

ifdown --exclude=lo -a && sudo ifup --exclude=lo -a

 

编辑/etc/ssh/sshd_config

#PermitRootLogin without-password
PermitRootLogin yes

 重启 ssh  服务

root@ubuntu:~# sudo service ssh restart

 

在/etc/apt/sources.list添加条目:

deb http://cn.archive.ubuntu.com/ubuntu/ trusty main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu/ trusty-backports main restricted universe multiverse

 

关机,编辑xml文件

virsh edit ubuntu14.04-raw
<channel type=‘unix‘>
      <source mode=‘bind‘ path=‘/var/lib/libvirt/qemu/org.qemu.guest_agent.0.ubuntu14.04-raw.sock‘/>
      <target type=‘virtio‘ name=‘org.qemu.guest_agent.0‘/>
      <address type=‘virtio-serial‘ controller=‘0‘ bus=‘0‘ port=‘1‘/>
</channel
 

 注意:这个文件我在考虑要不要注释掉

<source mode=bind path=/var/lib/libvirt/qemu/org.qemu.guest_agent.0.ubuntu14.04-raw.sock/> 

 

安装和配置qemu-guest-agent:

root@ubuntu:~# sudo apt-get update
root@ubuntu:~# sudo apt-get install qemu-guest-agent
root@ubuntu:~# /etc/init.d/qemu-guest-agent start
root@ubuntu:~# /etc/init.d/qemu-guest-agent status
 * qemu-ga is running

 

 

 

制作ubuntu 14.04镜像

标签:class   重启   lib   upd   eth   4.0   channel   lis   bar   

原文地址:http://www.cnblogs.com/zhongguiyao/p/7569947.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!