diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-01-15 21:12:16 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2002-01-15 21:12:16 +0000 |
commit | eac0ee1d91c2e7552ae575bd254fbfc79be4cb45 (patch) | |
tree | 692d263254ff15eeb7a17e22d83ac88d0de80aea /chapter07/symperm.xml | |
parent | 67eb80483c0c8711f2f80bca511f04b3cdb12a94 (diff) |
removed functions, checkfs, halt, mountfs, reboot, sendsignals, sysklogd,
template, localnet and symperm files
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1441 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter07/symperm.xml')
-rw-r--r-- | chapter07/symperm.xml | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/chapter07/symperm.xml b/chapter07/symperm.xml deleted file mode 100644 index ef9181f4b..000000000 --- a/chapter07/symperm.xml +++ /dev/null @@ -1,57 +0,0 @@ -<sect1 id="ch07-symperm"> -<title>Setting up symlinks and permissions</title> -<?dbhtml filename="symperm.html" dir="chapter07"?> - -<para>These files get the proper permissions and the necessary symlinks -are created by running the following commands. If you didn't create the -loadkeys, setclock and/or ethnet scripts, make sure not to type them in -the commands below.</para> - -<para>A note of caution: all the symlinks (that start with an S or K) have to -be of the form Sxxxname where xxx are three digits denoting the order in -which the script is executed (the lower the number the sooner it's -executed). If you feel a need to use less than three digits, make sure -you pad with extra zero's at the beginning. This means, don't use -S20mydaemon, but S020mydaemon. And don't use K2otherdaemon, but -K002otherdaemon.</para> - -<para><screen><userinput>cd /etc/init.d &&</userinput> -<userinput>chmod 754 rc rcS functions checkfs halt loadkeys mountfs reboot &&</userinput> -<userinput>chmod 754 sendsignals setclock sysklogd template &&</userinput> -<userinput>chmod 754 localnet ethnet &&</userinput> -<userinput>cd ../rc0.d &&</userinput> -<userinput>ln -sf ../init.d/ethnet K800ethnet &&</userinput> -<userinput>ln -sf ../init.d/sysklogd K900sysklogd &&</userinput> -<userinput>ln -sf ../init.d/sendsignals S800sendsignals &&</userinput> -<userinput>ln -sf ../init.d/mountfs S900mountfs &&</userinput> -<userinput>ln -sf ../init.d/halt S999halt &&</userinput> -<userinput>cd ../rc6.d &&</userinput> -<userinput>ln -sf ../init.d/ethnet K800ethnet &&</userinput> -<userinput>ln -sf ../init.d/sysklogd K900sysklogd &&</userinput> -<userinput>ln -sf ../init.d/sendsignals S800sendsignals &&</userinput> -<userinput>ln -sf ../init.d/mountfs S900mountfs &&</userinput> -<userinput>ln -sf ../init.d/reboot S999reboot &&</userinput> -<userinput>cd ../rcS.d &&</userinput> -<userinput>ln -sf ../init.d/localnet S100localnet &&</userinput> -<userinput>ln -sf ../init.d/checkfs S200checkfs &&</userinput> -<userinput>ln -sf ../init.d/mountfs S300mountfs &&</userinput> -<userinput>ln -sf ../init.d/setclock S400setclock &&</userinput> -<userinput>ln -sf ../init.d/loadkeys S500loadkeys &&</userinput> -<userinput>cd ../rc1.d &&</userinput> -<userinput>ln -sf ../init.d/ethnet K800ethnet &&</userinput> -<userinput>ln -sf ../init.d/sysklogd K900sysklogd &&</userinput> -<userinput>cd ../rc2.d &&</userinput> -<userinput>ln -sf ../init.d/sysklogd S100sysklogd &&</userinput> -<userinput>ln -sf ../init.d/ethnet K800ethnet &&</userinput> -<userinput>cd ../rc3.d &&</userinput> -<userinput>ln -sf ../init.d/sysklogd S100sysklogd &&</userinput> -<userinput>ln -sf ../init.d/ethnet S200ethnet &&</userinput> -<userinput>cd ../rc4.d &&</userinput> -<userinput>ln -sf ../init.d/sysklogd S100sysklogd &&</userinput> -<userinput>ln -sf ../init.d/ethnet S200ethnet &&</userinput> -<userinput>cd ../rc5.d &&</userinput> -<userinput>ln -sf ../init.d/sysklogd S100sysklogd &&</userinput> -<userinput>ln -sf ../init.d/ethnet S200ethnet</userinput></screen></para> - -</sect1> - |