ubuntu下面的启动内核选项跟其他操作系统不一样,有个子菜单,比如我在默认的ubuntu13.04上安装了一个新的内核3.14.5,那么默认的第一项是3.14.5内核,第二项是一个子菜单,第二项里面的第一项是3.14.5,第二项是3.14.5 recovery 模式,第三项是3.8.0,第四项是3.8.0(recover)
那么应该修改
1/boot/grub/grub.cfg
中的
1GRUB_DEFAULT=0为GRUB_DEFAULT="1>2"
然后:
1update-grub
重启即可
写于: 2014年07月11日更新于: 2015年03月24日
在grub默认参数当中添加
1GRUB_RECORDFAIL_TIMEOUT=0
写于: 2014年07月23日更新于: 2015年03月24日
暂未分类
未读使用nginx作为下载站点,开启目录浏览的功能在/etc/nginx/sites-enabled/default中添加:
123autoindex on ;autoindex_exact_size off;autoindex_localtime on;
说明:
第一个为目录浏览功能开始第二个为不精确计算文件大小第三个为取时间为服务器本地的时间
删除location相关的内容修改完成重启nginx服务
写于: 2014年07月16日更新于: 2015年03月24日
暂未分类
未读软件介绍mdstest是软件的元数据操作基准测试工具,用来模拟对文件或者目录的open、stat、close操作,然后报告性能
下载软件压缩包:
123456789101112yum install openmpi openmpi-devel -y在/root/.bashrc中添加(注意也要添加mdtest的路径)export PATH=$PATH:/usr/lib64/openmpi/bin/source /root/.bashrc下载[root@lab8105 ~]# wget http://sourceforge.net/projects/mdtest/files/latest/download解压[root@lab8105 ~]# tar -xvf mdtest-1.9.3.tgz修改makefile:mdtest: mdtest.c mpicc -Wall -D $(OS) $(LARGE_FILE) $(MDTEST_FLAGS) -g -o mdtest mdtest.c -lm
参数如下:
1234567891011121314151617181920212 ...
暂未分类
未读linux域名解析引起登陆慢的问题在于,ssh去登录这个台机器的时候,本机会去通过域名解析获取登录主机的主机名,所有一旦域名解析是无效的,需要等待较长时间
解决办法一:将域名解析指到127.0.0.1
解决办法二:修改配置文件 /etc/ssh/sshd_config
1UseDNS no
然后重启ssh服务
写于: 2014年07月10日更新于: 2015年03月24日
123[root@centos6 ~]# udevadm info -q path -n /dev/sdb[root@centos6 ~]# udevadm info -q path -n /dev/sdc/devices/pci0000:00/0000:00:10.0/host2/target2:0:1/2:0:1:0/block/sdc
拿到编号
1[root@centos6 ~]# vim /etc/udev/rules.d/80-mydisk.rules
增加
1DEVPATH=="/devices/pci0000:00/0000:00:10.0/host2/target2:0:2/2:0:2:0/block/sd*", NAME="sdc", MODE="0660"
这样对应的插槽的第二个就会一直对应盘符sdc 而不会出现跳盘符的问题了
写于: 2014年11月07日更新于: 2015年03月24日
方法如下:
Restart Machine
HOLD Shift Button ( You will get message “GRUB Loading“)
Select the Kernel ( Don’t select Recovery Mode)
Press the e key to edit the entry
Select the line starting with the word “linux”
Append the init=/bin/bash to the end of the linux line.
Now Press F10 to boot with provided option.
Now You need to mount File System ( / ) into Read-Write Mode
mount -o remount,rw /
Now execute passwd command to Reset root password.
For root User passwd ...
方法如下:
Restart Machine
HOLD Shift Button ( You will get message “GRUB Loading“)
Select the Kernel ( Don’t select Recovery Mode)
Press the e key to edit the entry
Select the line starting with the word “linux”
Append the init=/bin/bash to the end of the linux line.
Now Press F10 to boot with provided option.
Now You need to mount File System ( / ) into Read-Write Mode
mount -o remount,rw /
Now execute passwd command to Reset root password.
For root User passwd ...
通过iptables可以做转发
123456789101112131415161718192021222324252627282930313233IPT="/sbin/iptables"/bin/echo "1" > /proc/sys/net/ipv4/ip_forward/sbin/modprobe ip_tables/sbin/modprobe iptable_filter/sbin/modprobe iptable_nat/sbin/modprobe ip_conntrack/sbin/modprobe ip_conntrack_ftp/sbin/modprobe ip_nat_ftp$IPT -F$IPT -t nat -F$IPT -X$IPT -t nat -X$IPT -Z$IPT -t nat -Z#DNAT 做端口转发$IPT -t nat -A PREROUTING -d 192.168.19.102 -p tcp --dport 33 -j DNAT --to-destination 192.167.19.101:2 ...
查询磁盘对应关系:
12345678910111213141516[root@xenserver-eqtwbths ~]# ll /dev/disk/by-id/total 0lrwxrwxrwx 1 root root 9 Jun 5 13:24 edd-int13_dev81 -> ../../sdblrwxrwxrwx 1 root root 10 Jun 5 14:14 edd-int13_dev81-part1 -> ../../sdb1lrwxrwxrwx 1 root root 9 Jun 5 13:24 edd-int13_dev82 -> ../../sdclrwxrwxrwx 1 root root 9 Jun 5 13:24 edd-int13_dev83 -> ../../sddlrwxrwxrwx 1 root root 10 Jun 5 13:24 edd-int13_dev83-part1 -> ../../sdd1lrwxrwxrwx 1 root root 9 Jun 5 13:24 scsi-SATA ...