Automated Presentation - Raspberry Pi Forums
i not stranger unix struggling open office impress run automatically on powering rpi.
tried adding startx;soffice -show pp.odp script , adding rc.d using update rc.d doesn't have desired effect.
tried adding .bash_profile didn't work either.
ideas please?
tried adding startx;soffice -show pp.odp script , adding rc.d using update rc.d doesn't have desired effect.
tried adding .bash_profile didn't work either.
ideas please?
you mentioned created file .bash_profile. read comments @ top of file .profile carefully. if .bash_profile exists, .profile not run, path not set, path soffice unknown. recommend deleting .bash_profile , add command end of .profile.
there several steps needed launch graphical application.
1. need boot graphical runlevel. edit /etc/inittab change initial runlevel 2 5.
2. need automatically login user. edit /etc/inittab , change line in /etc/inittab looks this:
1:2345:respawn:/sbin/getty --noclear 38400 tty1
(yourusername pi)
1:2345:respawn:/bin/login -f yourusername tty1 </dev/tty1 >/dev/tty1 2>&1
3. need add "soffice -show pp.odp &" end of .profile user.
there several steps needed launch graphical application.
1. need boot graphical runlevel. edit /etc/inittab change initial runlevel 2 5.
2. need automatically login user. edit /etc/inittab , change line in /etc/inittab looks this:
1:2345:respawn:/sbin/getty --noclear 38400 tty1
(yourusername pi)
1:2345:respawn:/bin/login -f yourusername tty1 </dev/tty1 >/dev/tty1 2>&1
3. need add "soffice -show pp.odp &" end of .profile user.
raspberrypi
Comments
Post a Comment