Installed Debian to USB and it fails to boot because GRUB can’t find root?
Append “rootdelay=15” to GRUB kernel line. Your USB is too slow with initialization.
Installed Debian to USB and it fails to boot because GRUB can’t find root?
Append “rootdelay=15” to GRUB kernel line. Your USB is too slow with initialization.
You probably noticed that BackupPC fails to backup your cPanel host over rsync with the following error:
Got fatal error during xfer (fileListReceive failed)
Nothing else. Nada.
If you increase the ssh verbosity, you will see that there is an error stdin: is not a tty.
It turns out that cPanel adds mesg y to your .bashrc and /etc/bashrc, which somehow messes up the remote rsync data channel over ssh.
To overcome this issue, add on top of your .bashrc and /etc/bashrc on cPanel host:
1 2 3 |
if [ $(expr index "$-" i) -eq 0 ]; then return fi |