Re: allow ^C to interrupt /etc/rc.local

2011-02-26 Thread jidanni
OK, thanks everybody. I came up with a workaround since ^C doesn't interrupt: $ tail /etc/rc.local echo $0: Will execute \${program=/etc/init.d/nodm start}\ in ${seconds=5} seconds. Hit some chars and RET to cancel. Hit RET to start right away. for ((; seconds 0; seconds--)) do

Re: allow ^C to interrupt /etc/rc.local

2011-02-24 Thread Boyd Stephen Smith Jr.
On Thursday 24 February 2011 00:56:55 jida...@jidanni.org wrote: OK, since nobody knows, then what does recovery mode, Oh, I'm betting someone knows and they either didn't get your message (because they aren't on the list) or didn't reply (because they didin't want to spend their time that

Re: allow ^C to interrupt /etc/rc.local

2011-02-24 Thread Osamu Aoki
Hi, On Thu, Feb 24, 2011 at 02:56:55PM +0800, jida...@jidanni.org wrote: OK, since nobody knows, then what does recovery mode, /boot/grub/grub.cfg: menuentry 'Debian GNU/Linux, with Linux 2.6.37-1-686 (recovery mode)' I think this put system to something like runlevel S or 1 do to the

allow ^C to interrupt /etc/rc.local

2011-02-23 Thread jidanni
Gentlemen, at the bottom of /etc/rc.local I have: echo $0: Will execute \${program=/etc/init.d/nodm start}\ in ${seconds=5} seconds. Hit ^C to cancel. Hit RET to start right away. for ((; seconds 0; seconds--)); do read -p $seconds.. -t 1 break; done echo running

Re: allow ^C to interrupt /etc/rc.local

2011-02-23 Thread jidanni
OK, since nobody knows, then what does recovery mode, /boot/grub/grub.cfg: menuentry 'Debian GNU/Linux, with Linux 2.6.37-1-686 (recovery mode)' do to the terminal in order to enable interaction after one enters the root passwd? -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org