“SysRq key” 是允许将基本命令直接传递给内核进行调试的键序列。 在有些情况下,还可以用来重新引导远程管理系统。 串行控制台使用 RS-232 中断函数,比如 SysRq 键。 “中断”是在串行线上不进行传输的一段时间。 要在运行 Linux 的系统中配置 “Sysrq” 键,应遵守以下指令:
注:以下指令特定于 Linux GRand Unified Bootloader (GRUB)。 使用其他启动装载程序时,也有必要进行类似更改。
注:在配置客户端 VT100 仿真窗口时,必须将显示重定向控制台的窗口或应用程序设置为 25 行 x 80 列以确保正确的文本显示;否则,有些文本屏幕会显示混乱。
如下编辑文件 /etc/grub.conf。 请参阅后面的示例文件,其中显示了本步骤中所述的更改。
将以下两行新内容添加到文件的常规设置部分:
serial --unit=0 --speed=19200
terminal --timeout=10 serial
将两个选项附加到内核行:
kernel ............. console=ttyS0,19200
如果 /etc/grub.conf 包含 splashimage 指令,必须将其注释掉。
这个使用波特率 19200 的示例文件是一个例子。以下是 BMC 串行通信和 SOL 允许的最大波特率:
对于 PowerEdge 1425SC 和 其他 PowerEdge x8xx 系统为 19200。
对于不带 Dell Remote Access Controller (DRAC 5) 的 PowerEdge x9xx 系统为 57600。
对于带 DRAC 5 的 PowerEdge x9xx 系统为 115200。
表 D-1. 示例文件:/etc/grub.con
# grub.conf generated by anaconda
#
Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, e.g.
# root (hd0,0)
# kernel /boot/vmlinuz-version ro root=/dev/sdal
# initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=10
#splashimage=(hd0,2)/grub/splash.xpm.gz
serial --unit=0 --speed=19200
terminal --timeout=10 serial
title Red Hat Linux Advanced Server (2.4.9-e.3smp)
root (hd0,0)
kernel /boot/vmlinuz-2.4.9-e.3smp ro root=/dev/sda1 hda=ide-scsi console=tty0 console=ttyS0,19200
initrd /boot/initrd-2.4.9-e.3smp.img
title Red Hat Linux Advanced Server-up (2.4.9-e.3
root (hd0,00)
kernel /boot/vmlinuz-2.4.9-e.3 ro root=/dev/sda1 s
initrd /boot/initrd-2.4.9-e.3.im
有关编辑 grub.conf 的其它信息:
可能需要禁用 GRUB 的图形界面并转而使用基于文本的界面;否则,GRUB 屏幕将不会在 BMU 控制台重定向中显示。 要做到这一点,注释掉以 splashimage 开头的行。
如果在 GRUB 中有多个选项并且希望所有选项都通过 BMU 串行连接启动控制台会话,则为所有选项添加 console=ttyS1,19200。 以上示例只显示将 console=ttyS0,19200 添加到第一个选项。
在引导后启用登录到控制台
如下编辑文件 /etc/inittab:
添加新行在 COM1 串行端口上配置 getty:
co:2345:respawn:/sbin/agetty -h -L 19200 ttyS0 vt100
请参阅示例文件,其中显示添加了新行。
表 D-2. 示例文件:/etc/innitab
#
# inittab This file describes how the INIT process should set up
# the system in a certain run-level.
#
# Author: Miquel van Smoorenburg, <miquels@drinkel.nl.mugnet.org
# Modified for RHS Linux by Marc Ewing and Donnie Barnes
#
# Default runlevel. The runlevels used by RHS are:
# 0 - halt (Do NOT set initdefault to this)
# 1 - Single user mode
# 2 - Multiuser, without NFS (The same as 3, if you do not have
# networking)
# 3 - Full multiuser mode
# 4 - unused
# 5 - X11
# 6 - reboot (Do NOT set initdefault to this)
#
id:3:initdefault:
# System initialization.
si::sysinit:/etc/rc.d/rc.sysinit
l0:0:wait:/etc/rc.d/rc 0
l1:1:wait:/etc/rc.d/rc 1
l2:2:wait:/etc/rc.d/rc 2
l3:3:wait:/etc/rc.d/rc 3
l4:4:wait:/etc/rc.d/rc 4
l5:5:wait:/etc/rc.d/rc 5
l6:6:wait:/etc/rc.d/rc 6
# Things to run in every runlevel.
ud::once:/sbin/update
# Trap CTRL-ALT-DELETE
ca::ctrlaltdel:/sbin/shutdown -t3 -r now
# When our UPS tells us power has failed, assume we have a few
# minutes of power left. Schedule a shutdown for 2 minutes from now.
# This does, of course, assume you have power installed and your
# UPS is connected and working correctly.
pf::powerfail:/sbin/shutdown -f -h +2 "Power Failure; System Shutting Down"
# If power was restored before the shutdown kicked in, cancel it.
pr:12345:powerokwait:/sbin/shutdown -c "Power Restored; Shutdown Cancelled"