custom-ubuntu-server-iso 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 clea 2015-03-24 暂未分类 #暂未分类
定制ubuntu的时候修改proseed 一个参数的修改 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 ( 2015-03-24 暂未分类 #暂未分类
centos使用U盘做启动盘 软件下载地址: 1http://sourceforge.net/projects/iso2usb/files/latest/download?source=dlp 写于: 2014年08月04日更新于: 2015年03月24日 2015-03-24 暂未分类 #暂未分类
fio的配置使用 将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. 2015-03-24 暂未分类 #暂未分类
持续运行一个命令-并且将结果输出到文本 持续运行一个命令,并且将结果输出到文本 1234567#! /bin/shwhile [ 2 > 1 ]do echo `date` >> recode.txt df -h >> recode.txt sleep 5done 写于: 2014年06月12日更新于: 2015年03月24日 2015-03-24 暂未分类 #暂未分类
ubuntu无法关机 在/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 g 2015-03-23 暂未分类 #暂未分类
linux中KVM桥接网卡br0 在centos虚拟化当中需要增加一个桥接网卡,然后将虚拟化当中的机器的网卡桥接到桥接网卡,下面将描述设置方法: 查看现有网卡 1234567891011[root@zb ~]# vim /etc/sysconfig/network-scripts/ifcfg-eth0DEVICE=eth0HWADDR=70:71:BC:1F:E4:86TYPE=EthernetUUID=0213211a-d451 2015-03-23 暂未分类 #暂未分类
ubuntu掉电出现检查文件系统的问题 修改: 12/etc/default/rcS FSCKFIX=no 为 FSCKFIX=yes 出现这个情况的原因是硬件时钟偏移了显示上次挂载根目录在未来时间。 写于: 2013年11月28日更新于: 2015年03月23日 2015-03-23 暂未分类 #暂未分类
ssh配好无密码登录(RSA公钥)后,还要密码登录的问题的解决办法 首先删除 /root/.ssh目录然后ssh-keygen 生成新的认证目录然后检查能否免密码登陆 如果还不能可能是/root/目录的权限不对了 可能被异常改到777了做操作 1chmod 650 /root/ 然后再尝试看能不能免登陆访问 写于: 2013年11月28日更新于: 2015年03日23日 2015-03-23 暂未分类 #暂未分类
ubuntu服务器dns重启失效问题 方法一 通过/etc/network/interfaces,在它的最后增加一句:1dns-nameservers 8.8.8.8 8.8.8.8是Google提供的DNS服务,这里只是举一个例子,你也可以改成电信运营商的DNS。重启后DNS就生效了,这时候再看/etc/resolv.conf,最下面就多了一行: 123# Dynamic reso 2015-03-23 暂未分类 #暂未分类