那位帮忙看一下这个inittab文件是不是用问题呀.要怎么改才确. ::sysinit:/etc/rc.S ::respawn:-/bin/sh tty2::askfirst:-/bin/sh tty3::askfirst:-/bin/sh ::ctrlaltdel:/sbin/reboot ::shutdown:/bin/sh /sbin/fakedate ::shutdown:/sbin/swapoff -a >/dev/null 2>&1 ::shutdown:/bin/umount -a -r >/dev/null 2>&1 ::shutdown:/sbin/vgchange -an --ignorelockingfailure >/dev/null 2>&1 ::shutdown:/bin/sh /sbin/fixdate
by jingandleo - Linux新手园地 - 2008-10-07 18:04:02 阅读(1033) 回复(0)
下载了windriver公司(http://www.rtlinuxfree.com/)的开源RTlinux看了看。在它的doc目录里面,有一个kickstart。里面提到了一个奇怪的软件slackware,于是百度了一下,发现了百度知道如是说: http://baike.baidu.com/view/10899.htm slackware 开放分类: 操作系统、Linux slackware Linux是由Patrick Volkerding开发的GNU/Linux发行版。与很多其他的发行版不同,它坚持KISS(Keep It Simple Stupid)的原则,就是说没有...
openbsd includes a number of security features absent or optional in other operating systems and has a tradition of developers auditing the source code for software bugs and security problems. The project maintains strict policies on licensing and prefers the open source BSD licence and its variants—in the past this has led to a comprehensive licence audit and moves to remove or replace code und...
Black's openbsd Tips 有人用优雅来评价 openbsd 的简洁。本来觉得夸张,但用过才知道是优雅的令人窒息。 1. 从 openbsd FAQ 开始 很多人开始学习 openbsd 遇到问题就喜欢去论坛问或者到 Google 搜。其实大部分问题的答案就在官方的 FAQ 里面。不过建议不要去读网上那个所谓的中文版。版本老,还有很多东西没有翻译全,容易让人走弯路。直接去看官方英文版吧。 2. openbsd安装光盘制作 现在网上有一些网站可以下在 openbsd...
Q:用tar实现分卷压缩 A:分开: # tar czvf - dir | split -d -b 18m 合并: # cat x* > dir.tgz Q:可以象freebsd的"portupgrade -rRf"那样升级ports吗? A:可以"make update FORCE_UPDATE=yes" Q:限制SSH验证重试次数: A: # vi /etc/ssh/sshd_config MaxAuthTries 6 Q:可以把系统的核心的运行层次设置为最安全的层次: A: # sysctl -w kern.securelevel=2 Q:禁用由inetd启动的程序: A: # vi /etc/sysctl.c...