Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1051373
  • 博文数量: 171
  • 博客积分: 55
  • 博客等级: 民兵
  • 技术积分: 2077
  • 用 户 组: 普通用户
  • 注册时间: 2012-01-04 10:11
个人简介

pugna

文章分类

全部博文(171)

文章存档

2021年(4)

2020年(1)

2019年(4)

2018年(5)

2017年(7)

2016年(9)

2015年(36)

2014年(8)

2013年(96)

2012年(1)

发布时间:2015-12-24 09:00:43

......【阅读全文】

阅读(1373) | 评论(0) | 转发(0)

发布时间:2015-12-24 08:58:34

说明:蓝色=命令名称浅绿=命令参数浅蓝=选项 紫色=目录      系统环境:CentOS  5.8 x86_64不了解rrdtool是什么的先百度,这里不罗嗦了,直接上实例.建库即数据抓取脚本:#!/bin/bash.........【阅读全文】

阅读(1970) | 评论(0) | 转发(0)

发布时间:2015-07-27 15:08:56

<div class="post-content"><h3>创建并挂载</h3><pre><code class="language-bash"># dd if=/dev/zero of=/home/swap bs=1024 count=5000000# mkswap /home/swap# swapon /home/swap </code></pre><h3>开机自动挂载</h3><pre><code class="language-bash"># vi /etc/rc.localswapon /home/swap </code>.........【阅读全文】

阅读(992) | 评论(0) | 转发(0)

发布时间:2015-07-06 16:24:21

<br />LVM扩容<br /><br />lvextend -L +10G /dev/mapper/rootvg-LogVol06<br />resize2fs /dev/mapper/rootvg-LogVol06<br /><br />vgdisplay<br />lvdisplay<br /><br />......【阅读全文】

阅读(1020) | 评论(0) | 转发(0)

发布时间:2015-05-31 22:48:39

CentOS 下禁止screen建立新窗口时更改窗口尺寸Xshell或Putty之类的连接到Centos下使用screen时会改变窗口的尺寸,非常烦人,可以通过如下方法修改使其不更改窗口尺寸。编辑/etc/screenrc或~/.screenrc 加入下面的代码# Change the xterm initialization string from is2=\E[!p\E[?3;4l\E[4l\E> # (This fixes the "A.........【阅读全文】

阅读(1345) | 评论(0) | 转发(0)

发布时间:2015-04-03 15:40:24

......【阅读全文】

阅读(1182) | 评论(0) | 转发(0)

发布时间:2014-04-19 02:34:11

1.修改/etc/sysconfig/network加入NETWORKING_IPV6=no[root@vmcu ~]# cat /etc/sysconfig/networkNETWORKING=yesHOSTNAME=vmcu.xxx.comNETWORKING_IPV6=no2.屏蔽hosts文件中的IPV6选项[root@vmcu ~]# cat /etc/hosts127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4#::1 &nb.........【阅读全文】

阅读(1974) | 评论(0) | 转发(0)

发布时间:2014-03-14 14:28:23

1、卸载掉系统redhat自带的yum  rpm -qa |grep yum |xargs rpm -e --nodeps2 下载相关的centos yum插件  主要有python-iniparse-0.3.1-2.1.el6.noarch.rpm  yum-3.2.29-40.el6.centos.noarch.rpm yum-metadata-parser-1.1.2-16.el6.x86_64.rpm yum-plugin-fastestmirror-1.1.30-14.el6.........【阅读全文】

阅读(2374) | 评论(0) | 转发(0)

发布时间:2013-12-04 17:00:21

使用xargs获取输出内容并拼接成命令执行[root@testos ~]# ls *.sqlabc1.sql  abc2.sql  abc3.sql  abc4.sql  abc5.sql[root@testos ~]# ll *.sql | awk '/.*sql/ {print $9}'abc1.sqlabc2.sqlabc3.sqlabc4.sqlabc5.sql[root@testos ~]# cat *.sqlSET CLIENT_ENCODING TO UTF8;SET STANDA.........【阅读全文】

阅读(4558) | 评论(0) | 转发(0)

发布时间:2013-11-28 19:51:42

ssh远程执行命令技巧......【阅读全文】

阅读(2493) | 评论(0) | 转发(0)

发布时间:2013-11-28 17:00:05

CentOS 5安装Perl的 Text::CSV_XS 模块[root@testos ~]# perl -MCPAN -e shellTerminal does not support AddHistory.cpan shell -- CPAN exploration and modules installation (v1.7602)ReadLine support available (try 'install Bundle::CPAN')cpan> install Text::CSV_XSCPAN: Storable loaded okGoing to.........【阅读全文】

阅读(6586) | 评论(0) | 转发(0)

发布时间:2013-11-26 21:06:33

转载自 http://heylinux.com/archives/1075.html今天,我接到了一位同事的电话,说有一个严重的问题需要处理,“所有的Crontab计划任务都被人清空了”。我立刻问有没有备份,回答是“可能没有”。这样一来,情况就变得非常紧急了,因为我们每天在跑的计划任务有上百条。于是我登陆到服务器,检查了所有相.........【阅读全文】

阅读(5026) | 评论(0) | 转发(0)

发布时间:2013-11-22 16:39:01

以前在RHEL下做实验使用的是本地yum源,现在想使用在线源,但redhat的yum源是需要注册缴费才可以使用的。这里我根据前人的文档做了实验,成功在RHEL5.5下使用centos的yum源,整理出来以供学习交流之用。......【阅读全文】

阅读(2327) | 评论(0) | 转发(0)

发布时间:2013-11-22 15:19:22

转自 http://space.itpub.net/25313300/viewspace-708509由于 redhat的yum在线更新是收费的,如果没有注册的话不能使用,如果要使用,需将redhat的yum卸载后,重启安装,再配置其他源.本文包括配置本地源及第三方源。第三方源包括:网易,epel,repoforge ,rpmfusion 以下为详细过程: 1.删除redhat原有的y.........【阅读全文】

阅读(2159) | 评论(0) | 转发(0)

发布时间:2013-11-21 18:23:54

CentOS5/6使用EPEL源CentOS 6.xwget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpmwget http://rpms.famillecollet.com/enterprise/remi-release-6.rpmrpm -ivh epel-release-6-8.noarch.rpmrpm -ivh remi-release-6.rpmCentOS 5.xwget http://dl.fedoraproject.org/pub/epel/5/x.........【阅读全文】

阅读(1694) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册