[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: how to startx at boot time



>        if [ `tty` = "/dev/tty1" ]; then

A typo -- a single = is used to assign values, not compare them.
The script should use ==, thusly:

        if [ `tty` == "/dev/tty1" ]; then



Reply to: