暂未分类
未读首先找到下载包的地址 (使用的是centos6)
1http://download.opensuse.org/repositories/home:/libertas-ict:/cobbler26/CentOS_CentOS-6/noarch/
添加国内epel源:
1wget http://mirrors.aliyun.com/epel/6/x86_64/epel-release-6-8.noarch.rpm
本次测试下载这三个包:
123cobbler-2.6.5-9.1.noarch.rpm cobbler-web-2.6.5-9.1.noarch.rpm koan-2.6.5-9.1.noarch.rpm
下载rpm包:
123wget http://download.opensuse.org/repositories/home:/libertas-ict:/cobbler26/CentOS_CentOS-6/noarch/cobbler-2.6.5-9.1.noarch.rpm wget http://download.opensuse.org/repositories ...
Remastering the Ubuntu Desktop ISO is easy considering the existing graphical tools but did you ever wanted to build your custom Ubuntu Server Edition ISO ?
Preparing the EnvironmentYou’ll need a clean copy of the Ubuntu Server ISO that you want to customize. Since 10.04 is the latest Ubuntu version I will write down my examples using it but everything should work pretty much unchanged for older or newer versions.
After you have you have the original iso image downloaded, make a copy it’s conten ...
一个参数的修改
12345d-i clock-setup/utc-auto boolean false (不用utc)d-i clock-setup/ntp boolean false (不时间同步)d-i netcfg/disable_autoconfig boolean true (关闭自动网络配置)d-i netcfg/use_autoconfig boolean false (不使用自动配置文件)d-i apt-setup/use_mirror boolean false (不使用apt 镜像)
写于: 2014年08月07日更新于: 2015年03月24日
暂未分类
未读软件下载地址:
1http://sourceforge.net/projects/iso2usb/files/latest/download?source=dlp
写于: 2014年08月04日更新于: 2015年03月24日
将fio-2.1.10.tar.gz拷贝到linux服务器的/usr/src/下
解压源码包:
12root@grandocean:/usr/src# tar xvf fio-2.1.10.tar.gz root@grandocean:/usr/src# cd fio-2.1.10/
安装依赖包:
1root@grandocean:/usr/src/fio-2.1.10# apt-get install pkg-config gtk+-2.0 libaio-dev
开启gfio:
1root@grandocean:/usr/src/fio-2.1.10# ./configure --enable-gfio
编译fio:
1root@grandocean:/usr/src/fio-2.1.10# make fio
编译gfio:
1root@grandocean:/usr/src/fio-2.1.10# make gfio
启动server模式:
1root@grandocean:/usr/src/fio-2.1.10# ./fio -S
测试脚 ...
持续运行一个命令,并且将结果输出到文本
1234567#! /bin/shwhile [ 2 > 1 ]do echo `date` >> recode.txt df -h >> recode.txt sleep 5done
写于: 2014年06月12日更新于: 2015年03月24日
暂未分类
未读在/etc/default/halt 增加下面
1INIT_HALT = POWEROFF
另一种方法:
I have the same problem and found a solution which worked out for me.
Type in terminal:
1234567sudo -i (to get a root shell, sudo gedit is not recommended)gedit /etc/default/grubFind the line: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"Change this to: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi=force"Save the file and close the file.Finally, in terminal: update-grubexit (to end the root shell)
写于: 2014年05月0 ...
在centos虚拟化当中需要增加一个桥接网卡,然后将虚拟化当中的机器的网卡桥接到桥接网卡,下面将描述设置方法:
查看现有网卡
1234567891011[root@zb ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0HWADDR=70:71:BC:1F:E4:86TYPE=EthernetUUID=0213211a-d451-4944-881c-e7475b8bee34ONBOOT=yesNM_CONTROLLED=yesBOOTPROTO=staticIPADDR=192.168.7.107NETMASK=255.255.0.0GATEWAY=192.168.1.1
将网卡信息copy一份到br0再进行修改
修改eth0的信息为:
1234567DEVICE=eth0HWADDR=70:71:BC:1F:E4:86TYPE=EthernetONBOOT=yesNM_CONTROLLED=yesBOOTPROTO=staticBRIDGE=br0 #新增加了这一句,重要
修改br0的信息为:
123456 ...
修改:
12/etc/default/rcS FSCKFIX=no 为 FSCKFIX=yes
出现这个情况的原因是硬件时钟偏移了显示上次挂载根目录在未来时间。
写于: 2013年11月28日更新于: 2015年03月23日
首先删除 /root/.ssh目录然后ssh-keygen 生成新的认证目录然后检查能否免密码登陆
如果还不能可能是/root/目录的权限不对了 可能被异常改到777了做操作
1chmod 650 /root/
然后再尝试看能不能免登陆访问
写于: 2013年11月28日更新于: 2015年03日23日