Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.os.linux.misc > #8502 > unrolled thread
| Started by | "Absalom K." <absalom@emet.tnk> |
|---|---|
| First post | 2013-06-18 08:36 +0000 |
| Last post | 2013-06-18 12:17 -0400 |
| Articles | 4 — 4 participants |
Back to article view | Back to comp.os.linux.misc
Startup / launcher / no-logging / no-keyboard "Absalom K." <absalom@emet.tnk> - 2013-06-18 08:36 +0000
Re: Startup / launcher / no-logging / no-keyboard Johann Klammer <klammerj@NOSPAM.a1.net> - 2013-06-18 15:06 +0200
Re: Startup / launcher / no-logging / no-keyboard The Natural Philosopher <tnp@invalid.invalid> - 2013-06-18 14:54 +0100
Re: Startup / launcher / no-logging / no-keyboard Michael Black <et472@ncf.ca> - 2013-06-18 12:17 -0400
| From | "Absalom K." <absalom@emet.tnk> |
|---|---|
| Date | 2013-06-18 08:36 +0000 |
| Subject | Startup / launcher / no-logging / no-keyboard |
| Message-ID | <51c01c1f$0$2571$426a74cc@news.free.fr> |
Hi,
I want to make a small retro-gaming station for my children with
a Raspberry Pi. I would be happy to get some ideas concerning the
following issues:
a) auto-loggin, no username, no password;
is it possible to directly access the shell without the logging step?
b) the startup script should launch a menu (either some dialog/ncurses
or some framebuffer environment, rather no X) for selecting games (with
of course a "return to the shell" option) ;
c) I would like the menu to be fully driven from a joystick; I have never
used a joystick before (as a programmer); is it easy to handle such
a device from python (for instance)?
It's OK if I need to code a little for building a menu, but I am pretty
sure this kind of things already exist. Regards,
fu2 comp.os.linux.misc
[toc] | [next] | [standalone]
| From | Johann Klammer <klammerj@NOSPAM.a1.net> |
|---|---|
| Date | 2013-06-18 15:06 +0200 |
| Message-ID | <51c05b49$0$15846$91cee783@newsreader04.highway.telekom.at> |
| In reply to | #8502 |
Absalom K. wrote: > Hi, > > I want to make a small retro-gaming station for my children with > a Raspberry Pi. I would be happy to get some ideas concerning the > following issues: > > a) auto-loggin, no username, no password; > is it possible to directly access the shell without the logging step? if(logging=log-in?) then Yes man inittab > b) the startup script should launch a menu (either some dialog/ncurses > or some framebuffer environment, rather no X) for selecting games (with > of course a "return to the shell" option) ; man whiptail package whiptail needs to be installed... there are others like this, too.. > c) I would like the menu to be fully driven from a joystick; I have never > used a joystick before (as a programmer); is it easy to handle such > a device from python (for instance)? > Sorry, I don't know about that... > It's OK if I need to code a little for building a menu, but I am pretty > sure this kind of things already exist. Regards, > > fu2 comp.os.linux.misc
[toc] | [prev] | [next] | [standalone]
| From | The Natural Philosopher <tnp@invalid.invalid> |
|---|---|
| Date | 2013-06-18 14:54 +0100 |
| Message-ID | <kppoq8$m2k$1@news.albasani.net> |
| In reply to | #8503 |
On 18/06/13 14:06, Johann Klammer wrote: > Absalom K. wrote: >> Hi, >> >> I want to make a small retro-gaming station for my children with >> a Raspberry Pi. I would be happy to get some ideas concerning the >> following issues: >> >> a) auto-loggin, no username, no password; >> is it possible to directly access the shell without the logging >> step? > if(logging=log-in?) then Yes > man inittab >> b) the startup script should launch a menu (either some >> dialog/ncurses >> or some framebuffer environment, rather no X) for selecting >> games (with >> of course a "return to the shell" option) ; > man whiptail > package whiptail needs to be installed... > there are others like this, too.. >> c) I would like the menu to be fully driven from a joystick; I >> have never >> used a joystick before (as a programmer); is it easy to handle >> such >> a device from python (for instance)? >> > Sorry, I don't know about that... I think that some joysticks would work OK. I.e drivers may well exist in the kernel so they present themselves as /dev/joystick or whatever :-) If not you are in trouble..unless you care to write your own driver. But these http://www.amazon.co.uk/Logitech-Extreme-Pro-Precision-Fightstick/dp/B00CJ5FPTA/ref=dp_ob_title_vg#productDetails would seem to be pure USB that probably generate mouse/keyboard type events, and whilst picking up these is not an insuperable issue, its is not trivial either. But again no worse than picking up anything else when writing an X window program using a standard toolkit like GTK https://developer.gnome.org/gtk-tutorial/2.22/x2431.html >> It's OK if I need to code a little for building a menu, but I am pretty >> sure this kind of things already exist. Regards, >> >> fu2 comp.os.linux.misc > -- Ineptocracy (in-ep-toc’-ra-cy) – a system of government where the least capable to lead are elected by the least capable of producing, and where the members of society least likely to sustain themselves or succeed, are rewarded with goods and services paid for by the confiscated wealth of a diminishing number of producers.
[toc] | [prev] | [next] | [standalone]
| From | Michael Black <et472@ncf.ca> |
|---|---|
| Date | 2013-06-18 12:17 -0400 |
| Message-ID | <alpine.LNX.2.02.1306181216340.18486@darkstar.example.org> |
| In reply to | #8502 |
On Tue, 18 Jun 2013, Absalom K. wrote:
> Hi,
>
> I want to make a small retro-gaming station for my children with
> a Raspberry Pi. I would be happy to get some ideas concerning the
> following issues:
>
DOn't forget there is comp.sys.raspberry-pi that should be covering this.
Yes, your questions aren't really pi specific, but some of the first
whining in the new newsgroup was about running without a keyboard.
Michael
> a) auto-loggin, no username, no password;
> is it possible to directly access the shell without the logging step?
> b) the startup script should launch a menu (either some dialog/ncurses
> or some framebuffer environment, rather no X) for selecting games (with
> of course a "return to the shell" option) ;
> c) I would like the menu to be fully driven from a joystick; I have never
> used a joystick before (as a programmer); is it easy to handle such
> a device from python (for instance)?
>
> It's OK if I need to code a little for building a menu, but I am pretty
> sure this kind of things already exist. Regards,
>
> fu2 comp.os.linux.misc
>
[toc] | [prev] | [standalone]
Back to top | Article view | comp.os.linux.misc
csiph-web