cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \ ( I do

M

Mylinux

Guest
cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \
cp scripts/init-lcdproc.rpm /etc/rc.d/init.d/lcdproc)
- enable the scripts with e.g. linuxconf or create the symlinks
manually


this is the INSTALL statement, I do not understand why there is "&& \" and
I do no understand the "enable the script.....stmt",

what is actually require me to do?


I taken it from the down load ( version .43)
http://lcdproc.omnipotent.net/download.php3


would u please help?


TIA.
 
"Mylinux" <myLinux@My.com> wrote in message
news:bk0u0h$8764@imsp212.netvigator.com...
cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \
cp scripts/init-lcdproc.rpm /etc/rc.d/init.d/lcdproc)
- enable the scripts with e.g. linuxconf or create the symlinks
manually


this is the INSTALL statement, I do not understand why there is "&& \"
and
I do no understand the "enable the script.....stmt",

what is actually require me to do?
The "&&" is a control operator that tells the shell to only execute the
following command if the preceeding one worked.
The "\" is to ignore the newline character (Enter key) so that you can type
the command on multiple lines.

Once the scripts have been copied you need to run linuxconf and set the
scripts to startup on bootup.
you can start it manually untill you work this out by doing this:
/etc/rc.d/init.d/lcdd start && \
/etc/rc.d/init.d/lcdproc start

gavin
 
gav <get@lost.com> wrote in message news:bk173i$j6n$1@lust.ihug.co.nz...
"Mylinux" <myLinux@My.com> wrote in message
news:bk0u0h$8764@imsp212.netvigator.com...
cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \
cp scripts/init-lcdproc.rpm /etc/rc.d/init.d/lcdproc)
- enable the scripts with e.g. linuxconf or create the symlinks
manually


this is the INSTALL statement, I do not understand why there is "&& \"
and
I do no understand the "enable the script.....stmt",

what is actually require me to do?

The "&&" is a control operator that tells the shell to only execute the
following command if the preceeding one worked.
The "\" is to ignore the newline character (Enter key) so that you can
type
the command on multiple lines.

Once the scripts have been copied you need to run linuxconf and set the
scripts to startup on bootup.
you can start it manually untill you work this out by doing this:
/etc/rc.d/init.d/lcdd start && \
/etc/rc.d/init.d/lcdproc start

gavin
 
gav <get@lost.com> wrote in message news:bk173i$j6n$1@lust.ihug.co.nz...
"Mylinux" <myLinux@My.com> wrote in message
news:bk0u0h$8764@imsp212.netvigator.com...
cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \
cp scripts/init-lcdproc.rpm /etc/rc.d/init.d/lcdproc)
- enable the scripts with e.g. linuxconf or create the symlinks
manually


this is the INSTALL statement, I do not understand why there is "&& \"
and
I do no understand the "enable the script.....stmt",

what is actually require me to do?

The "&&" is a control operator that tells the shell to only execute the
following command if the preceeding one worked.
The "\" is to ignore the newline character (Enter key) so that you can
type
the command on multiple lines.

Once the scripts have been copied you need to run linuxconf and set the
scripts to startup on bootup.
you can start it manually untill you work this out by doing this:
/etc/rc.d/init.d/lcdd start && \
/etc/rc.d/init.d/lcdproc start





 
If I do not use linuxconf, what are the steps to enable the script to start
on bootup.


sorry the preious feedback was accidently sent out.











gav <get@lost.com> wrote in message news:bk173i$j6n$1@lust.ihug.co.nz...
"Mylinux" <myLinux@My.com> wrote in message
news:bk0u0h$8764@imsp212.netvigator.com...
cp scripts/init-lcdd.rpm /etc/rc.d/init.d/lcdd && \
cp scripts/init-lcdproc.rpm /etc/rc.d/init.d/lcdproc)
- enable the scripts with e.g. linuxconf or create the symlinks
manually


this is the INSTALL statement, I do not understand why there is "&& \"
and
I do no understand the "enable the script.....stmt",

what is actually require me to do?

The "&&" is a control operator that tells the shell to only execute the
following command if the preceeding one worked.
The "\" is to ignore the newline character (Enter key) so that you can
type
the command on multiple lines.

Once the scripts have been copied you need to run linuxconf and set the
scripts to startup on bootup.
you can start it manually untill you work this out by doing this:
/etc/rc.d/init.d/lcdd start && \
/etc/rc.d/init.d/lcdproc start

gavin
 
"Mylinux" <myLinux@My.com> wrote in message
news:bk389l$hg72@imsp212.netvigator.com...
If I do not use linuxconf, what are the steps to enable the script to
start
on bootup.

ln -s /etc/rc.d/init.d/lcdd /etc/rc.d/rc3.d/S95lcdd && \
ln -s /etc/rc.d/init.d/lcdproc /etc/rc.d/rc3.d/S95lcdproc && \
ln -s /etc/rc.d/init.d/lcdd /etc/rc.d/rc0.d/K95lcdd && \
ln -s /etc/rc.d/init.d/lcdproc /etc/rc.d/rc0.d/K95lcdproc && \
echo "Done"


That should do the job.
 

Welcome to EDABoard.com

Sponsor

Back
Top