SUSE Linux中启动udev的命令

SUSE Linux中启动udev的命令,第1张

在SUSE Linux *** 作系统上配置新磁盘时,启动udev提示没有这个命令

test1:~ # start_udev

-bash:where:command not found

原来是SUSE Linux上的udev命令与RedHat系列不同

而SUSE系统中udev的命令为:

test1:~ # /etc/init.d/boot.udev status

Checking for udevd: running

test1:~ # /etc/init.d/boot.udev restart

Restarting udevd: done

方法一

使用 /etc/rc.d/rc.local,自动启动脚本

#!/bin/bash

# THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES

#

# It is highly advisable to create own systemd services or udev rules

# to run scripts during boot instead of using this file.

#

# In contrast to previous versions due to parallel execution during boot

# this script will NOT be run after all other services.

#

# Please note that you must run 'chmod +x /etc/rc.d/rc.local' to ensure

# that this script will be executed during boot.

touch /var/lock/subsys/local12345678910111213

复制代码 在《Linux就该这么学》中有命令大全查看命令

1、授予 /etc/rc.d/rc.local 文件执行权限

命令:chmod +x /etc/rc.d/rc.local

2、在文件文件底部添加脚本

3、重启服务器,查看脚本是否启动

注意:/etc/rc.d/rc.local脚本执行,在/etc/profile之前,若/etc/rc.d/rc.local用到/etc/profile的环境变量,Shell无法执行成功

可以把这个alias

shut=shutdown

-h

now

命令保存到home目录下的.bashrc文件中,

这样重启后也会有效。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8313875.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-15
下一篇 2023-04-15

发表评论

登录后才能评论

评论列表(0条)

保存