RHEL 5.6

出現了這個錯誤Skipping clustered volume group ,如何處理?

2013-10-06 04:02
  However, a local volume group has been incorrectly set up as clustered, and there isnot a cluster set up for the locking, when unset the cluster flag is attempted to be removed, vgchange will print out "Skipping cluster volume group." In order to fix this, edit the /etc/lvm/lvm.conf file...

taskset 用法說明

2013-08-20 11:19
我的Linode十分繁忙,在跑一些密集操作数据库的Rake任务时尤其如此。但我观察发现,Linode服务器的4核CPU,只有第1个核心(CPU#0)非常忙,其他都处于idle状态。   不了解Linux是如何调度的,但目前显然有优化的余地。除了处理正常任务,CPU#0还需要处理每秒网卡中断。因此,若能将CPU#0分担的任务摊派到其他CPU核心上,可以预见,系统的处理能力将有更大的提升。   两个名词 SMP (Symmetrical Multi-Processing):指在一个计算机上汇集了一组处理器(多CPU),各CPU之间共享内存子系统以及总线结构。...

taskset 指令

2013-08-20 11:16
  taskset 指令 1.功能作用 指定进程运行的CPU 2.位置 /usr/bin/taskset 3.格式用法 taskset [options] [mask | cpu-list] [pid|cmd [args...]] 4.主要参数 1 2 3 4 5 -a, --all-tasks         操作所有的任务线程 -p,...

top 解說

2013-08-20 11:14
Analyzing thread CPU usage on Linux Use top to analyze the CPU usage of each application thread. Introduction To investigate the per-thread CPU usage on Linux, the recommended tool is top with the -H option, which provides an additional thread for information not provided by top in the default...

看 process 運行在那一個 cpu core

2013-08-20 11:11
看 process 運行在那一個 cpu core   以 pid = 22884 的 process 為例 輸入 [root@voipdb1 ~]# cat /proc/22884/stat | awk '{print $39}' 16   代表此 process 運行在第17 core。

記錄每一個 user 所下過的指令

2013-08-13 11:32
  1. 在 /etc/profile、/etc/bashrc 中加入   PROMPT_COMMAND='history -a >(tee -a ~/.bash_history | logger -t "$USER[$$] $SSH_CONNECTION")'     2. 在 /etc/syslog.conf 加入   # Log all kernel messages to the console. # Logging much else clutters up the screen. #kern.*...

排除 sudo : sorry, you must have a tty to run sudo 狀況

2013-07-27 22:43
  Linux 主機升級系統後開始收到系統的通知信,某幾個 cron 排程指令有了問題, sudo: sorry, you must have a tty to run sudo 因為是重要的流程,先用 visudo 修改設定將下列參數註解掉   Defaults requiretty   就可以解決這個問題。   關於requiretty的解釋如下: If set, sudo will only run when the user is logged in to a real tty. When this...

iSCSI initiator 設定

2013-07-15 22:37
  更改 initiatorname [root@voipdb1 iscsi]# cat initiatorname.iscsi InitiatorName=iqn.2013-07.voipdb1:51294dc59990     尋找 iSCSI Server 的 Lun [root@voipdb1 iscsi]# iscsiadm -m discovery -t st -p 192.168.101.1     掛載 iSCSI Server 的...

建立光碟片的 yum repository

2013-07-14 03:00
[root@voipdb1 ~]# cat /etc/yum.repos.d/server.repo [source] name=Red Hat Enterprise Linux $releasever - $basearch - Source baseurl=file:///root/rhel6 enabled=1 gpgcheck=0 gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release   [ha] name=Red Hat Enterprise Linux...

建立本地端的 yum repository

2013-07-03 15:48
將光碟片中的檔案都 copy 到 /rhel5 下   [root@node2 ~]# cd /media/RHEL_5.6\ x86_64\ DVD/   [root@node2 RHEL_5.6 x86_64 DVD]# cp -r * /rhel5/   編輯  /etc/yum.repos.d/rhel-debuginfo.repo 檔案   [root@node1 /]# vi...
1 | 2 >>