如何自动启动无线

来源:百度知道 编辑:UC知道 时间:2024/06/18 12:32:24
我的笔记本是神州F1600R2的

有无线功能,我每次开机用无线上时,都要按Fn+F10启动无线,在自动连接。
有没有什么办法,可以每次开机不用按Fn+F10启动无线。

望大家帮我下 ,

我不是很懂电脑,讲解的时候尽量简单化些。

谢谢了
百度里就没有人知道吗/

就是几个普通的命令。请问一下加在如此rcS的那里阿?很菜的问题!谢谢!
#! /bin/sh
#
# rcS Call all S??* scripts in /etc/rcS.d in
# numerical/alphabetical order.
#
# Version: @(#)/etc/init.d/rcS 2.76 19-Apr-1999 miquels@cistron.nl
#

PATH=/sbin:/bin:/usr/sbin:/usr/bin
runlevel=S
prevlevel=N
umask 022
export PATH runlevel prevlevel

#
# See if system needs to be setup. This is ONLY meant to
# be used for the initial setup after a fresh installation!
#
if [ -x /sbin/unconfigured.sh ]
then
/sbin/unconfigured.sh
fi
#
# Source defaults.
#
. /etc/default/rcS
export VERBOSE

#
# Trap CTRL-C &c only in this shell so we can interrupt subprocesses.
#
trap ":" INT QUIT TSTP

#
# Call all parts in order.
#
for i in /etc/rcS.d/S??*
do
# Ignore dangling symlinks for now.
[ ! -f "$i" ] && continue

case &qu