Linux基本命令——优化开机自动加载的服务

linux每次开机会自动启动一些服务,若想对默认启动的系统服务进行优化,可以使用以下两种工具。

1: ntsysv 命令

2: chkconfig 命令


一,ntsysv命令

单独使用nysysv命令,只对当前运行级别下的系统服务生效,添加--level选项,可对其他级别下的系统服务进行优化。

使用命令ntsysv --level 35             //显示在运行级别3、5下自动启动的所有服务

二,chkconfig 命令

格式:chkconfig --level 运行级别 服务名称 on/off       //设置某服务在某级别下,自动启动或关闭

chkconfig --list  服务名称                                               //查看某个服务的启动情况


使用命令:chkconfig --level 35 postfix on    //设置postfix服务在3、5级别自动启动

chkconfig --list postfix                    //查看postfix命令的启动情况

时间: 2024-11-04 21:49:18

Linux基本命令——优化开机自动加载的服务的相关文章

linux开机自动加载分区/etc/fstab配置文件

解释一下/etc/fstab,开机自动挂载 [[email protected] home]# cat /etc/fstab LABEL=/                 /                       ext3    defaults        1 1 LABEL=/boot             /boot                   ext3    defaults        1 2 tmpfs                   /dev/shm  

[dpdk][kernel][driver] 如何让DPDK的UIO开机自动加载到正确的网卡上 (没搞定)

0. 前言 开了虚拟机,开始dpdk之前,我每天都干这几件事: [[email protected] potatos]# modprobe uio [[email protected] potatos]# insmod /root/dpdk/x86_64-native-linuxapp-gcc/kmod/igb_uio.ko [[email protected] potatos]# /root/dpdk/tools/dpdk-devbind.py -b igb_uio 0000:00:04.0

Powershell 开机自动加载Snapin 和module

以前只知道在Powershell的默认路径下面添加第三方的module就可以开机自动加载了 PS C:\WINDOWS\system32> $env:PSModulePath -split ";" C:\Users\yli\Documents\WindowsPowerShell\Modules C:\Program Files\WindowsPowerShell\Modules C:\WINDOWS\system32\WindowsPowerShell\v1.0\ModulesC

ubuntu开机自动加载iptables配置(转)

原文:http://www.xuebuyuan.com/730127.html iptables的使用参见http://wiki.ubuntu.org.cn/IptablesHowTo iptables配置完成后,规则是自动立即生效的,但是机器重启动后,规则会丢失 ubuntu下可以通过以下步骤保存iptables设置,并实现开机自动加载 1.iptables配置完成后手动保存 执行iptables-save > /etc/iptables.up.rules ,将当前配置保存再iptables.

内核模块开机自动加载和黑名单

1,自动加载 # vim /etc/sysconfig/modules/modulename.modules : #! /bin/sh /sbin/modinfo -F filename modulename > /dev/null 2>&1 if [ $? -eq 0 ]; then /sbin/modprobe modulename fi # 这个脚本会先检查模块是否存在,如果存在就用modprobe加载. # modulename.modules 脚本必须确保属性是可执行的. 2

Linux开机自动加载的几种方法

linux 添加开机启动项的三种方法. (1)编辑文件 /etc/rc.local 输入命令:vim /etc/rc.local 将出现类似如下的文本片段: #!/bin/sh #This script will be executed after all the other init scripts.#You can put your own initialization stuff in here if you don't#want to do the full Sys V style in

Linux内核启动及文件系统加载过程

上接博文<u-boot之u-boot-2009.11启动过程分析> 当u-boot开始执行bootcmd命令,就进入Linux内核启动阶段,与u-boot类似,普通Linux内核的启动过程也可以分为两个阶段,但针对压缩了的内核如uImage就要包括内核自解压过程了.本文以项目中使用的linux-2.6.37版源码为例分三个阶段来描述内核启动全过程.第一阶段为内核自解压过程,第二阶段主要工作是设置ARM处理器工作模式.使能MMU.设置一级页表等,而第三阶段则主要为C代码,包括内核初始化的全部工作

(转)关闭WordPress自动加载的Open Sans字体,总是连接googleapi.com,导致打开wordpress很慢

转自http://www.xuanfengge.com/turn-off-automatic-loading-wordpress-open-sans-fonts.html 在网上搜了一番,有四种方法. (1)安装别人针对这个问题开发好的屏蔽加载谷歌字体的插件 (2)修改过滤函数function.php (3)自己手动替换到加载谷歌字体的路径 (4)使用GoAgent 我使用了第一种方法来解决问题, 下载插件: 1. 插件一 名称:Remove Open Sans font Link from W

自动加载类库

在3.2中,基本上无需手动加载类库文件,你可以很方便的完成自动加载. 命名空间自动加载 系统可以通过类的命名空间自动定位到类库文件,例如: 我们定义了一个类 Org\Util\Auth 类: namespace Org\Util; class Auth { } 保存到 ThinkPHP/Library/Org/Util/Auth.class.php. 接下来,我们就可以直接实例化了. new \Org\Util\Auth(); 在实例化Org\Util\Auth类的时候,系统会自动加载 Thin