当前位置:  技术问答>php开源软件 iis7站长之家

天上掉下一个大烧饼拉

    来源: 互联网  发布时间:2014-10-26

    本文导语:  1。请问这些名词是什么意思(在servicecfg配置命令里) AT Daemon Key Table Power Mgmt Daemon RPC Portmapper SMB (Windows) File Service SNMP Information Service YP Bind Daemon 2。linux在键盘鼠标都不动20分钟后就黑屏,怎样关掉这个功能  ...

1。请问这些名词是什么意思(在servicecfg配置命令里)
AT Daemon
Key Table
Power Mgmt Daemon
RPC Portmapper
SMB (Windows) File Service
SNMP Information Service
YP Bind Daemon


2。linux在键盘鼠标都不动20分钟后就黑屏,怎样关掉这个功能 


3。我的系统每用几天就在启动时出现下面的一行字:
/dev/hda5 has reached maximal mount count, check forced
每次检查都要十分钟,怎样解决这个问题?


compile kernel的问题:
我的kernel是2.4.1的,但编译了n(n>10)次都还有几个问题没解决,在此请高手们帮个忙:
4.在xconfig里,无论将gb和big5设为或,在xwindows下汉字都显示为"?",但2.2.14的内核却没有这个问题,是不是有什么汉字库没挂上什么的,怎样解决。


5.在config里如何设置才能让计算机在命令halt后自动power halt,也就是让power灯灭掉。


6.为何在make module_install时有如下提示:
warning: modutils is reading from /etc/conf.modules because
         /etc/modules.conf does not exist.  The use of/etc/conf.modulesis
         deprecated, please rename /etc/conf.modules to /etc/modules.conf
         as soon as possible.  Command mv /etc/conf.modules /etc/modules.conf
必须mv /etc/conf.modules /etc/modules.conf
编译完后又必须mv /etc/modules.conf /etc/conf.modules(否则启动后模块不能使用)。

为什么最高只能给72分,怎样加分?

7有一次在make module_install时,出现下面这几行字:
depmod: *** Unresolved symbols in /lib/modules/2.4.1/kernel/fs/binfmt_elf.o
depmod:         get_pte_slow
depmod:         __handle_bad_pmd
请问binfmt_elf是什么模块?depmod是干什么用的?(我英语太差,man depmod看不完~~~~)


|
1。请问这些名词是什么意思(在servicecfg配置命令里) AT Daemon at read commands from standard input or a specified file which are to be executed at a later time. Key Table it loads the selected keyboard map as set in /etc/sysconfig/keyboard. this can be selected using the kdbconfig utility.you should leave this enabled for most machines. Power Mgmt Daemon it used for monitoring batery status and logging it via syslog.it can also be used for shutting down the machine when the battery is low. RPC Portmapper the portmapper manages RPC connections, which are used by protocols such as NFS and NIS.the portmap server must be running on machines which act as servers for protocols which make use of RPC mechanism. SMB (Windows) File Service this used to provide SMB network services.don't tell me that you don't know what is samba. SNMP Information Service this is Simple Network Management Protocol Daemon. YP Bind Daemon this is a daemon which runs on NIS/YP clients and binds them to a NIS domain.it must be running for systems based on glibc to work as NIS client,but it should not be enabled on systems which are not using NIS(Network Information Services). 2。linux在键盘鼠标都不动20分钟后就黑屏,怎样关掉这个功能  linux use an APM monitoring daemon apmd,that works in conjunction with the APM BIOS driver in the OS kernel.so check your bios and close the related function. 3。我的系统每用几天就在启动时出现下面的一行字: /dev/hda5 has reached maximal mount count, check forced 每次检查都要十分钟,怎样解决这个问题? After an ext2 file system has been mounted n number of times, an fsck is forced on the next mount. Typically n is set to 20. If you only mount at each reboot, it is typical to have a situation where for 20 reboots the fsck is skipped, but then at the 21st reboot, all the file systems are checked. The long wait on this 21st reboot gets irksome.         # dumpe2fs /dev/hda7 | grep '[mM]ount count'     dumpe2fs 1.19, 13-Jul-2000 for EXT2 FS 0.5b, 95/08/09     Mount count:              7     Maximum mount count:      20 This says that /dev/hda7 has been mounted seven times since the last fsck, and the fsck will be skipped for 20 mounts. If all your file systems have the same `Mount count' then they will all fsck together at the 20th reboot. It's easy to fix that. Say:        # umount /dev/hda6     # tune2fs -C 9 /dev/hda6     tune2fs 1.19, 13-Jul-2000 for EXT2 FS 0.5b, 95/08/09     Setting current mount count to 9     # mount /dev/hda6    This changes the `Mount count' to 9.        WARNING WARNING: ONLY RUN tune2fs ON AN UNMOUNTED FILESYSTEM. tune2fs    goes ahead and does it's job even if the file system is mounted. I    suspect this is dangerous, so it's up to YOU to be careful.     If you're paranoid and like to have lots of fscks, or if you have more than 20 file systems, the `Maximum mount count' can also be changed by saying tune2fs -c N. The value N=-1 disables this feature. You should also know that tune2fs -i 2 says "check every two days". This may be useful for machines such as notebooks. compile kernel的问题: 我的kernel是2.4.1的,但编译了n(n>10)次都还有几个问题没解决,在此请高手们帮个忙: 4.在xconfig里,无论将gb和big5设为或,在xwindows下汉字都显示为"?",但2.2.14的内核却没有这个问题,是不是有什么汉字库没挂上什么的,怎样解决。 this problem has no relation with kernel. you may set locale first:  export LC_ALL=zh_CN OR edit /etc/i18n.if this can not solve your problem, then upgrade your KDE 2.1.1, this maybe the best solution. 5.在config里如何设置才能让计算机在命令halt后自动power halt,也就是让power灯灭掉。 i think this depend on your mainboard,is it a ATX mainboard? 6.为何在make module_install时有如下提示: warning: modutils is reading from /etc/conf.modules because         /etc/modules.conf does not exist.  The use of/etc/conf.modulesis         deprecated, please rename /etc/conf.modules to /etc/modules.conf         as soon as possible.  Command mv /etc/conf.modules /etc/modules.conf 必须mv /etc/conf.modules /etc/modules.conf 编译完后又必须mv /etc/modules.conf /etc/conf.modules(否则启动后模块不能使用)。 because your modutils is new, so it use modules.conf now, but your initscripts is old,it need conf.modules,so you can upgrade your initscripts, or modify /etc/rc.d/rc.sysinit directly.then try "make modules_install" again. 为什么最高只能给72分,怎样加分? i don't know, i'm a newcomer. 7有一次在make module_install时,出现下面这几行字: depmod: *** Unresolved symbols in /lib/modules/2.4.1/kernel/fs/binfmt_elf.o depmod:        get_pte_slow depmod:        __handle_bad_pmd check your config. depmod used to create dependency file based on symbols,and this file an later be used by modprobe to automatically load the relevant modules. 3.能请你详细说一下 /etc/fstab 后面两数字的意思吗? the first number is fs_freq, is used for dump command to determine which filesystems need to be dumped.if it's not present,a value of zero is returned and dump will assume that the filesystem does not need to be dumped.so leave it to be zero. the other number is fs_passno, is used by fsck to determine the order in which filesystem checks are done at reboot.set it to zero.

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3