Today I add some documentation about the installation of Debian (edge) on a Qube2. You will find this pages on my Wiki pages.
Nerd style of waisting time!
Today I add some documentation about the installation of Debian (edge) on a Qube2. You will find this pages on my Wiki pages.
About: bringing live to the qube2 LCD. The patch for the init.d rc script …
/usr/sbin/putlcd “$actioning:” “${script##*/???}”
Where do you and with what value are you setting $actioning? And what got ##*/??? to do?
You should read this as $actioning so basically the variable $action which should contain the values start or stop. So this line should write starting or stopping to the first line of the LCD.
${script##*/???} removes the longest substring (##) from the begining (*) to the last (/) plus the next 3 characters (???) from the variable script.
Sample: If the variable script will have the following value:
script=/etc/rc2.d/S20ssh
The ${script##*/???} will return the string ssh
The variables action and script are provided by the init scripts.