My desktop system is:
$ uname -a
Linux xmachine 3.0.0-13-generic #22-Ubuntu SMP Wed Nov 2 13:25:36 UTC 2011 i686 i686 i386 GNU/Linux
By running ps a | grep getty, I get this output:
900 tty4 Ss+ 0:00 /sbin/getty -8 38400 tty4
906 tty5 Ss+ 0:00 /sbin/getty -8 38400 tty5
915 tty2 Ss+ 0:00 /sbin/getty -8 38400 tty2
917 tty3 Ss+ 0:00 /sbin/getty -8 38400 tty3
Hello,
I want to configure a kiosk pc with opera in kiosk mode.
so I installed Ubuntu 10.12 minimal with
sudo apt-get install xserver-xorg-core xinit
sudo apt-get install rungetty
tty1.conf: exec /sbin/rungetty autologin username tty1
.bash_profile: startx
.xinitrc: exec opera --k
everything work well, after booting opera appears in kiosk mode
the problem is, that I found no way to set pow
I found that, in /etc/inittab, this modification (-a username) for the user u disables the login/password check for all tty:s:
1:2345:respawn:/sbin/getty -a u 38400 tty1
2:23:respawn:/sbin/getty -a u 38400 tty2
3:23:respawn:/sbin/getty -a u 38400 tty3
4:23:respawn:/sbin/getty -a u 38400 tty4
5:23:respawn:/sbin/getty -a u 38400 tty5
6:23:respawn:/sbin/getty -a u 38400 tty6
That would be great fo
I always used inittab method and are using it now./etc/inittabid:5:initdefault:
rc::sysinit:/etc/rc.sysinit
rs:S1:wait:/etc/rc.single
rm:2345:wait:/etc/rc.multi
rh:06:wait:/etc/rc.shutdown
su:S:wait:/sbin/sulogin -p
# -8 options fixes umlauts problem on login
c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
c3:2345:respawn:/sbin/agetty -8 38400 tt
menu.lst:timeout 5default 0color light-blue/black light-cyan/bluetitle Arch (main)root (hd0,0)kernel /vmlinuz-linux root/dev/disk/by-uuid/1463dc61-c52f-486d-8900-eec20a154c57 roinittab:id:3:initdefaultrc::sysinit:/etc/rc.sysinitrs:S1:wait:/etc/rc.singlerm:2345:wait:/etc/rc.multirh:06:wait:/sbin/sulogin -pc1:2345:respawn:/sbin/agetty -8 -s 38400 tty1 linuxc2:2345:respawn:/sbin/agetty -8 -s 38400 tt
I'm trying to set up an Ubuntu 12.04 machine as a kiosk and I would like it, on boot, to automatically log in as my kiosk user "kiosk", and start the appropriate display manager, in this case blackbox.
I have configured /etc/lightdm/lightdm.conf as in this question and have an appropriate /usr/share/xsessions/blackbox.desktop to launch blackbox.
I managed to get initial autologin by using the db
ln -sf /usr/lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@tty2.serviceRepeat this for remaining vts - change @tty2 to @tty3 an so on.
Šaran
https://bbs.archlinux.org/profile.php?id=51949
2012-10-04T08:28:07Z
Hi, I was an happy LXDM user until the latest update, LXDM 0.4.1-11.
I am installing BusyBox on a device that does not have keyboard or serial connection, so I log into the system with SSH. I am in doubt about what to put in the inittab file.