摘要:
Libvirt 客户端管理工具virsh 链接到Hypervisor 本地的Hypervisor #virsh (virsh -c qemu:///system 或者 virsh –connect qemu:///system ) 远程的Hypervisor #virsh –c qemu+ssh://root@xxx.xxx.xxx.xxx/system ( 使用ssh的transpor... 阅读全文
摘要:
GlusterFS is an open source, distributed file system capable of scaling to several petabytes. 阅读全文
摘要:
Xmanager Yum install xauth Yum install tigervnc
Yum install virt-manager
Yum install libvirt
Systemctl start libvirtd 阅读全文
摘要:
1,使用guestfish修改iptables中的内容 Install guestfish
#yum install libguestfs-tools
Guestfish –rw –a rehel65.img :run :list-filesystems mount /dev/sda1 / vi /etc/sysconfig/iptables 阅读全文
摘要:
for 属性规定 label 与哪个表单元素绑定 RADIO 当点击文本RADIO时,radio也会被选中。 阅读全文
摘要:
1,替换本件中的指定内容
#sed -i "s/abcdefg/xyz/g" a.txt //把a.txt中abcdefg 替换成xyz (g代表全局,s 后面的也可以写为#) sed -i "s#abcdefg#xyz#g" a.txt 阅读全文
摘要:
删除远程仓库中的文件:
$git rm --cached filename //把要删除的文件添加到staging area
$git commit $git push 阅读全文
摘要:
1,sleep sleep 3 休息3秒 sleep 3s休息3秒 sleep 3m休息3分钟 sleep 3h休息3小时 2,grep grep –v grep //忽略本条命令 -v select non-matching lines 例:ps –ax |grep –v grep 忽略本条命令(ps –ax |grep –v grep) $ ps –ax –... 阅读全文
摘要:
1,@PrepareForTest 出现时 @RunWith(PowerMockRunner.class) 必须出现.2,代码中用到系统静态类 如:java.lang.System
public class SystemPropertyMockDemo { public String getSystemProperty() throws IOException { ... 阅读全文
摘要:
settings.py setting:INSTALLED_APPS 包含以下应用,这些都是由 Django 提供的: django.contrib.auth – 身份验证系统。 django.contrib.contenttypes – 内容类型框架。 django.contrib.sessions – session 框架。 django.contrib.sites ... 阅读全文