Early Black Friday. Upgrade Your Safe Game!

2024-11-19 Thread Pendleton
ent<br/>Video Demonstration ![Revolving Safe Video](https://content.pendletonfamilybrands.com/pages/bulletin/promotions/2024/early-black-friday-upgrade-your-safe-game/i/7be93cad-f0b7-4ee7-b37b-a35b755311ef/?loop&autoplay) (*click the video above to see the conce

Re: How do I submit a game to a distribution?

2024-11-13 Thread aces and eights
about 30 years ago my colleague said that all his friends in the US were complaining that their sons wanted to be patent, copyright attorneys mick On Tue, 12 Nov 2024 at 21:06, wrote: > Steven Peckham wrote: > > >I would really want to address this in detail after the Copyright > > >goes throug

Re: How do I submit a game to a distribution?

2024-11-12 Thread debian-user
Steven Peckham wrote: > >I would really want to address this in detail after the Copyright > >goes through. > >No. After the Copyright is in effect, I will be happy to provide the > >code under the GPL3 license restrictions. It doesn't sound like you understand copyright and licensing very well.

Re: How do I submit a game to a distribution?

2024-11-12 Thread Steven Peckham
On Monday, November 11, 2024 at 11:53:07 PM EST, Timothy M Butterworth wrote: On Mon, Nov 11, 2024 at 6:42 PM Steven Peckham wrote: Hi, I retired and decided to learn some computer languages. I wrote an Adventure game in C++ (mostly just C using SDL to handle the screen and sounds) in

Re: How do I submit a game to a distribution?

2024-11-11 Thread Timothy M Butterworth
On Mon, Nov 11, 2024 at 6:42 PM Steven Peckham wrote: > Hi, > I retired and decided to learn some computer languages. I wrote an > Adventure game in C++ (mostly just C using SDL to handle the screen and > sounds) in order to learn C. I expect to debug it by January then copyright &

Re: How do I submit a game to a distribution?

2024-11-11 Thread Thomas Schmitt
Hi, Steven Peckham wrote: > I wrote an Adventure game [...] I expect to [...] give it a GPL3 > license. This will make it legally suitable for Debian GNU/Linux distro. > I would like to figure that out, and if so, offer it to one or more > distribution(s). Debian has a proced

How do I submit a game to a distribution?

2024-11-11 Thread Steven Peckham
Hi, I retired and decided to learn some computer languages. I wrote an Adventure game in C++ (mostly just C using SDL to handle the screen and sounds) in order to learn C. I expect to debug it by January then copyright it and give it a GPL3 license. I am not sure if anyone would like to play it

Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Stefan Monnier
> :https://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal > * License : License GNU Free Documentation License v1.1 or any later > version, no invariant sections or front and back text > Programming Lang: unknown > Description : tabletop rpg g

Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Emanuel Berg
Joshua Allen wrote: > deadEarth is a free and open TTRPG game for use in real > life or online Never heard of but sounds interesting, as technology, and maybe even as a game. Is it TT as in https://en.wikipedia.org/wiki/Tabletop_Simulator ? -- underground experts united

Re: RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Patrick Wiseman
ps://web.archive.org/web/20021211104811/http://www.deadearth.com/index.pl/legal > * License : License GNU Free Documentation License v1.1 or any later > version, no invariant sections or front and back text > Programming Lang: unknown > Description : tabletop rpg game &

RFP: deadEarth RPG documentation - free and open RPG game

2023-06-28 Thread Joshua Allen
License v1.1 or any later version, no invariant sections or front and back text Programming Lang: unknown Description : tabletop rpg game - deadEarth is a free and open TTRPG game for use in real life or online - I am aware of other TTRPGs but this looks to be the oldest one I could find

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Wed, 21 Dec 2022 at 04:18, Lee wrote: > On 12/20/22, David wrote: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk 'BEGIN { FS=":" ; done=0 } > > /CD001/ && done==0 { print $1 - 50 ; done=1 }' > > 50 > > You can do it without flags: > > $ echo -e '100:CD001\nXXX\n200:CD001' | awk -F: '/CD001/

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, i meanwhile had a chance to inspect the image file and found that it shows a repeating pattern of bytes with value 255 every 2352 bytes. This corresponds to the size of medium level CD sectors, as can be obtained by SCSI command "READ CD" (e.g. via Linux ioctl CDROMREADRAW). CD-DA audio secto

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Lee
On 12/20/22, David wrote: > On Tue, 20 Dec 2022 at 22:04, David wrote: >> On Tue, 20 Dec 2022 at 22:02, David wrote: > >> > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && >> > NR==1 { print $1 - 50 }' >> > 50 >> >> Oops, my mistake, that's not the solution. Give me another m

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread Stefan Monnier
> Not that that is always important. But I just commented today > because so often 'awk' is ignored as if its only capability is 'print $1' > when in fact it is actually very powerful but neglected. FWIW, `sed` can also do that job. Tho the subtraction part would take a lot more work (`sed` does

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:04, David wrote: > On Tue, 20 Dec 2022 at 22:02, David wrote: > > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > > NR==1 { print $1 - 50 }' > > 50 > > Oops, my mistake, that's not the solution. Give me another minute and I > will post a better one

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread Thomas Schmitt
Hi, The Wanderer wrote: > With the '-o' option, grep prints only the parts of the line that were > matched - but the plural here is very relevant. If that guess is > correct, then the "line" in question has *four* occurrences, so grep > prints them all - each on a separate line of output. The man

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > Kernel logs say "isofs_fill_super: get root inode failed". So there is more stuff inserted between the volume descriptor and the root directory of the ISO. (The descriptor contains a minimal directory record which points to the content of the root directory. All attribut

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 22:02, David wrote: > $ echo -e '100:CD001\n200:CD001' | awk 'BEGIN { FS=":" } /CD001/ && > NR==1 { print $1 - 50 }' > 50 Oops, my mistake, that's not the solution. Give me another minute and I will post a better one one.

Re: use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:53, The Wanderer wrote: > On 2022-12-20 at 05:37, David wrote: > > On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> This contradicts the promises of man grep about option -m. > >> It does seem to, at least at a

use of awk instead of complex multielement commands (was Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game))

2022-12-20 Thread The Wanderer
On 2022-12-20 at 05:37, David wrote: > On Tue, 20 Dec 2022 at 21:10, The Wanderer > wrote: > >> On 2022-12-20 at 02:51, Thomas Schmitt wrote: >>> This contradicts the promises of man grep about option -m. >> >> It does seem to, at least at a glance - but I think I've figured >> out what's going

Re: 'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread David
On Tue, 20 Dec 2022 at 21:10, The Wanderer wrote: > On 2022-12-20 at 02:51, Thomas Schmitt wrote: > >>> offst=$( expr \ > >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ > >>> | sed -e 's/:/ /' \ > >>> | awk '{ print $1 }' ) - 32769 ) > > > > The Wande

'grep -o -m' (was Re: Can't mount CD image of Win95 game)

2022-12-20 Thread The Wanderer
On 2022-12-20 at 02:51, Thomas Schmitt wrote: > Hi, > > i wrote: >>> To obtain the offset of the first occurence of "CD001", do >>> >>> offst=$( expr \ >>> $( grep -a -o -b -m 1 CD001 cdimage.iso \ >>> | sed -e 's/:/ /' \ >>> | awk '{ print $1 }' )

Re: Can't mount CD image of Win95 game

2022-12-20 Thread Yvan Masson
ot inode failed". I really appreciate the help on this very specific and technical issue, but I am not sure it is worth the effort. As I said, it can be mounted with dosbox. And indeed, the game is the french version of "The Magic School Bus Explores the Solar System". For those in

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > > To obtain the offset of the first occurence of "CD001", do > > > > offst=$( expr \ > > $( grep -a -o -b -m 1 CD001 cdimage.iso \ > > | sed -e 's/:/ /' \ > > | awk '{ print $1 }' ) - 32769 ) The Wanderer wrote: > Cutting down the comm

Re: Can't mount CD image of Win95 game

2022-12-19 Thread The Wanderer
On 2022-12-19 at 16:07, Thomas Schmitt wrote: > Hi, > > Yvan Masson wrote: >> I am really not at ease using tools like hexdump, > > I pondered a bit more. If it's an ISO filesystem wrapped into some header > and maybe a footer, then mount option -o offset= could help. > > To obtain the offset o

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
uot;CD001" if offset is 0.) Then use the resulting number with the mount command mount -t iso9660 -o offset="$offst" cdimage.iso /mnt It might be that you get errors when mounting or when accessing the files in the mounted image. Check your kernel logs even if all looks good. --- (

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 16:34, Thomas Schmitt a écrit : Hi, i wrote: dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give m

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, i wrote: > >dd if=cdimage.iso bs=1 count=64 | od -t c Yvan Masson wrote: > 000 \0 377 377 377 377 377 377 377 377 377 377 \0 \0 002 \0 001 > 020 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 \0 This does not give me ideas. > >strings cdimage.iso | head -1

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Le 19/12/2022 à 15:25, Kamil Jońca a écrit : Yvan Masson writes: Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount

Re: Can’t mount CD image of Win95 game

2022-12-19 Thread Kamil Jońca
Yvan Masson writes: > Hi list, > > I have a CD image of an old Win 95 game. I can mount it from dosbox > with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but > could not mount it with Debian: > > $ file cdimage.iso > cdimage.iso: data > > $ sudo

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi Thomas, Le 19/12/2022 à 13:28, Thomas Schmitt a écrit : Hi, Yvan Masson wrote: I have a CD image of an old Win 95 game. [...] $ file cdimage.iso cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFF...

Re: Can't mount CD image of Win95 game

2022-12-19 Thread Thomas Schmitt
Hi, Yvan Masson wrote: > I have a CD image of an old Win 95 game. [...] > $ file cdimage.iso > cdimage.iso: data So the cdimage.iso is not an ISO 9660 filesystem or somehow defaced. (Does the image file perhaps begin by "RIFFCDXA" ?) What do you get from the follow

Can’t mount CD image of Win95 game

2022-12-19 Thread Yvan Masson
Hi list, I have a CD image of an old Win 95 game. I can mount it from dosbox with the `imgmount` command (`imgmount D cdimage.iso -t iso`), but could not mount it with Debian: $ file cdimage.iso cdimage.iso: data $ sudo mount cdimage.iso /mnt -o loop mount: /mnt/sshfs: wrong fs type, bad

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread David Wright
everyone else. So I'll try a fresh install from netinst; that's NETinst. Keep up. > Let me try and help narrow down some of the scope of what you're asking and > then see if we can help you on the debian-user list. Maybe you could: > > Pick one machine that you'

Re: Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread IL Ka
> > I'm not sure what protocol would be running over the USB2 interface - maybe > PPTP - equivalent to some of the dial-up protocols. > A small note: PPTP works on top of IP, it is a VPN protocol. It encapsulates PPP protocol (which I believe you were talking about). PPP can run IP over point-to-

Re: Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread Andrew M.A. Cater
figured "my way". > Second, it makes all installation logs conveniently available. > > > > > This is a game of twenty questions > > > > What's this machine going to be FOR? > > > > 1. What's the end goal for that machine? What do you want to

Part 2 {Re: Installation and other problems ... [20 questions game]}

2021-03-06 Thread Richard Owlett
roves I can run Debian configured "my way". Second, it makes all installation logs conveniently available. This is a game of twenty questions What's this machine going to be FOR? 1. What's the end goal for that machine? What do you want to use it for? The immediate goal is di

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread Richard Owlett
On 03/06/2021 05:46 AM, Andrew M.A. Cater wrote: Hi Richard, Hi yourself. Just how did you know I'd just finished my first cup of coffee? as one well past 'three score and ten' it's decaf :{ Looking at the threads from you over the last year+: I think I see a common pattern. Yep. Been tr

Re: Installation and other problems ... [20 questions game].

2021-03-06 Thread David
On Sat, 6 Mar 2021 at 22:46, Andrew M.A. Cater wrote: > Looking at the threads from you over the last year+: > I think I see a common pattern. This has been going on since 2015 or so. > Given that we can't actually sit by your side to do this: answers to some of > these in order may help us fig

Installation and other problems ... [20 questions game].

2021-03-06 Thread Andrew M.A. Cater
that references to them get confusing. Let me try and help narrow down some of the scope of what you're asking and then see if we can help you on the debian-user list. Maybe you could: Pick one machine that you're wanting to install Debian on. [Just Debian, for the moment].

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-08 Thread KHMan
On 5/9/2019 12:34 AM, David Wright wrote: On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote: On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: On 06.05.19 09:03, Greg Wooledge wrote: On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Sme

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-08 Thread David Wright
On Wed 08 May 2019 at 14:08:03 (+0800), KHMan wrote: > > On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: > > > On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: > > > > On 06.05.19 09:03, Greg Wooledge wrote: > > > > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: > [sn

Re: Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-07 Thread KHMan
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: On Mon, 6 May 2019 at 23:53, Erik Christiansen wrote: > On 06.05.19 09:03, Greg Wooledge wrote: > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: [snipped all] Hi Erik Maybe you would enjoy answering this question then? h

Shell game? was Re: pmount could perhaps be of greater utility?

2019-05-07 Thread David Wright
On Tue 07 May 2019 at 10:12:10 (+1000), David wrote: > On Mon, 6 May 2019 at 23:53, Erik Christiansen > wrote: > > On 06.05.19 09:03, Greg Wooledge wrote: > > > On Sat, May 04, 2019 at 01:48:01PM +0200, Jonas Smedegaard wrote: > > > > Quoting Erik Christiansen (2019-05-04 08:43:53) > > > > > >

Bug with hack in bsdgames-2.17-26build1 - SIGSEGV when type 'i' after restoring a saved game - WITH A FIX!

2018-03-25 Thread Richard Henschel
Program hack core dumps when you restore a saved game and then enter 'i' to see Inventory.  The following patch to hack.o_init.c fixes the problem.  (Sorry if cut and paste changed tabs to spaces...)  I am running Ubuntu 17.10, but don't think platform matters. *** hack.o_ini

Re: i386 game without wine32

2018-03-21 Thread The Wanderer
On 2018-03-21 at 12:04, Josh W. wrote: > I have a x86_64 archetecture on my Debian Stretch system... I am trying to > play a i386 pc game but when i try to install wine32 in the terminal i get > the following message. > > josh@debian:/var/lib/dpkg$ sudo apt-get install wine32 &g

i386 game without wine32

2018-03-21 Thread Josh W.
I have a x86_64 archetecture on my Debian Stretch system... I am trying to play a i386 pc game but when i try to install wine32 in the terminal i get the following message. josh@debian:/var/lib/dpkg$ sudo apt-get install wine32 Reading package lists... Done Building dependency tree Reading state

Re: WAS Re: debian 8 NOW game keyboard config

2015-04-13 Thread Ric Moore
On 04/12/2015 10:33 PM, Ric Moore wrote: On 04/11/2015 04:31 PM, Reco wrote: Hi. On Sat, 11 Apr 2015 16:00:11 -0400 Ric Moore wrote: On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo] password for ric: root@iam:~# dpkg-reconfigu

Re: WAS Re: debian 8 NOW game keyboard config

2015-04-13 Thread Ric Moore
On Sun, Apr 12, 2015 at 10:39:31PM -0400, Ric Moore wrote: On 04/11/2015 04:31 PM, Reco wrote: > Hi. > >On Sat, 11 Apr 2015 16:00:11 -0400 >Ric Moore wrote: > >>On 04/11/2015 03:05 PM, Reco wrote: >>>dpkg-reconfigure -plow keyboard-configuration >> >>ric@iam:~$ sudo su - >>[sudo] password for

Re: WAS Re: debian 8 NOW game keyboard config

2015-04-11 Thread Reco
Hi. On Sat, 11 Apr 2015 16:00:11 -0400 Ric Moore wrote: > On 04/11/2015 03:05 PM, Reco wrote: > > dpkg-reconfigure -plow keyboard-configuration > > ric@iam:~$ sudo su - > [sudo] password for ric: > root@iam:~# dpkg-reconfigure -plow keyboard-configuration > update-rc.d: warning: start and stop

WAS Re: debian 8 NOW game keyboard config

2015-04-11 Thread Ric Moore
On 04/11/2015 03:05 PM, Reco wrote: dpkg-reconfigure -plow keyboard-configuration ric@iam:~$ sudo su - [sudo] password for ric: root@iam:~# dpkg-reconfigure -plow keyboard-configuration update-rc.d: warning: start and stop actions are no longer supported; falling back to defaults update-rc.d:

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-30 Thread Elimar Riesebieter
* Kevin O'Gorman [2014-12-29 14:58 -0800]: > I have an image of the old Windows 98 Entertainment Pack floppy. I'd like > to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's > list of applications or games, and I'm completely new to trying this. > > I could use help, advice

Re: Help me run an old Windows game. PlayOnLinux? Wine? (SOLVED)

2014-12-29 Thread Kevin O'Gorman
On Mon, Dec 29, 2014 at 3:55 PM, Kevin O'Gorman wrote: > > > On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis wrote: > >> On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: >> > I have an image of the old Windows 98 Entertainment Pack floppy. I'd >> like >> > to run one of the game

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Doug
On 12/29/2014 07:04 PM, Doug wrote: On 12/29/2014 06:55 PM, Kevin O'Gorman wrote: On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis mailto:fa...@ariis.it>> wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: > I have an image of the old Windows 98 Entertainment Pack

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Doug
On 12/29/2014 06:55 PM, Kevin O'Gorman wrote: On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis mailto:fa...@ariis.it>> wrote: On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: > I have an image of the old Windows 98 Entertainment Pack floppy. I'd like > to run one of

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Kevin O'Gorman
On Mon, Dec 29, 2014 at 3:24 PM, Francesco Ariis wrote: > On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: > > I have an image of the old Windows 98 Entertainment Pack floppy. I'd > like > > to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's > > list of appl

Re: Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Francesco Ariis
On Mon, Dec 29, 2014 at 02:58:00PM -0800, Kevin O'Gorman wrote: > I have an image of the old Windows 98 Entertainment Pack floppy. I'd like > to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's > list of applications or games, and I'm completely new to trying this. I remembe

Help me run an old Windows game. PlayOnLinux? Wine?

2014-12-29 Thread Kevin O'Gorman
I have an image of the old Windows 98 Entertainment Pack floppy. I'd like to run one of the games that's on it, TIC.EXE. It's not in PlayOnLinux's list of applications or games, and I'm completely new to trying this. I could use help, advice, warnings or pointers to a better place to get help.

Re: Building/Compiling game xonix without X11 for console only

2014-03-28 Thread Markos
Hi, How to play this game? Thanks, Markos On 26-03-2014 13:35, Hörmetjan Yiltiz wrote: Hi, I like `xonix' quite a lot. This game is so fun! But I prefer to play it from the console, rather than in an X window. The game originally written without X11 support. Here is man page xon

Building/Compiling game xonix without X11 for console only

2014-03-26 Thread Hörmetjan Yiltiz
Hi, I like `xonix' quite a lot. This game is so fun! But I prefer to play it from the console, rather than in an X window. The game originally written without X11 support. Here is man page xonix(6x): The original xonix game has been seen somewhere on an old PC/XT clone. This

Re: Steam game TF2 needs newer libc

2013-07-10 Thread John Tate
od to be a part of something! Thanks for the tip. On Wed, Jul 10, 2013 at 7:19 PM, Karl E. Jorgensen wrote: > Hi > > On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote: >> An update for steam has come out and now I can't run my favourite game TF2. >> >>

Re: Steam game TF2 needs newer libc

2013-07-10 Thread Karl E. Jorgensen
Hi On Wed, Jul 10, 2013 at 06:25:24AM +0100, John Tate wrote: > An update for steam has come out and now I can't run my favourite game TF2. > > /bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not > found (required by > /home/john/.loca

Steam game TF2 needs newer libc

2013-07-09 Thread John Tate
An update for steam has come out and now I can't run my favourite game TF2. /bin/sh: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.14' not found (required by /home/john/.local/share/Steam/ubuntu12_64/gameoverlayrenderer.so) It's because it is written for Ubuntu basically, I

Re: Is unlimited redeal no longer possible in Aisleriot's Klondike game?

2012-05-18 Thread Camaleón
On Wed, 16 May 2012 16:35:00 -0400, Patrick Wiseman wrote: > It used to be one could edit klondike.scm, set redeal to -1, and so have > infinite redeals. But klondike.scm no longer exists after a recent > upgrade. Is there another way to get infinite redeals? Mmm, yes, it could be an upstream cha

Is unlimited redeal no longer possible in Aisleriot's Klondike game?

2012-05-16 Thread Patrick Wiseman
It used to be one could edit klondike.scm, set redeal to -1, and so have infinite redeals. But klondike.scm no longer exists after a recent upgrade. Is there another way to get infinite redeals? Thanks Patrick -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "

Re: Game for toddlers

2011-07-06 Thread Preston Boyington
Ralf Mardorf wrote: P.S. Be sure to give the kids their own accounts, because they will drag panels all over the screen, add countless "Untitled Folder"s to the desktop, etc. My kids also liked the idea of having a secret password to log in. I used our last name, so they could practice spelli

Re: Game for toddlers

2011-07-06 Thread Ralf Mardorf
for beginners. > > > > childsplay -- This has less games than gcompris, but it's perhaps a > > little less overwhelming. It's big drawback is (last time I used it), > > you need to read in order to quit the game. Gcompris lets you quit > > "visually

Re: Game for toddlers

2011-07-06 Thread Rob Owens
nd keyboard" section which builds the basic skills of moving the mouse, clicking, dragging, using the keyboard, etc. It's great for beginners. childsplay -- This has less games than gcompris, but it's perhaps a little less overwhelming. It's big drawback is (last time I used it),

Re: Game for toddlers

2011-07-05 Thread Preston Boyington
T o n g wrote: Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? while not exactly a game, my daughter enjoyed playing with TuxPaint. there are plenty of stamps, colors, and sounds that kept her entertained while getting her used

Re: Game for toddlers

2011-07-04 Thread Pablo Sánchez
T o n g, my two children learnt with gcompris, starting when they were two years old. Little one, 3 years old now, realy likes it on linux and windows. Pablo Sánchez Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? Or, a bit OT, yo

Re: Game for toddlers

2011-07-04 Thread MRH
On 04/07/11 21:51, T o n g wrote: Hi, Do you have any *first hand experiences* of games available in Debian that toddlers of 2 to 4 can enjoy? Or, a bit OT, your *first hand experiences* of online games for toddlers please? I found my child extremely slow in picking up the idea of the games --

Re: Game for toddlers

2011-07-04 Thread Lisi
y initial prods, which I kept very low key. It was "Would you like to play a game on my computer?" not "Come on, time for the computer." HTH - rather than bores you ;-) - Lisi -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of &

Re: Game online

2010-11-02 Thread Kelly Clowers
On Tue, Nov 2, 2010 at 05:12, Alex PADOLY wrote: > > Hi, > > Di you know a game online that I can play with firefox on Linux. > Regards. games.AdultSwim.com (may be mildly NSFW, but no, it isn't a porn site, it is Cartoon Network's late night division) popcap.com (comme

Re: Game online

2010-11-02 Thread Alan Ianson
On Tue November 2 2010 05:12:41 am Alex PADOLY wrote: > Di you know a game online that I can play with firefox on Linux. > Regards. I like quakelive.com. I haven't run it in a while but it is much like running quake III.. one of many.. :) -- To UNSUBSCRIBE, email to debia

Re: Game online

2010-11-02 Thread Camaleón
On Tue, 02 Nov 2010 13:12:41 +0100, Alex PADOLY wrote: > Di you know a game online that I can play with firefox on Linux. > Regards. http://en.lmgtfy.com/?q=linux+online+games :-P Greetings, -- Camaleón -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subj

Game online

2010-11-02 Thread Alex PADOLY
Hi, Di you know a game online that I can play with firefox on Linux. Regards. Alex Une messagerie gratuite, garantie à vie et des services en plus, ça vous tente ? Je crée ma boîte mail www.laposte.net -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of

Small Game RectsFight

2010-03-22 Thread Рустам
rectsfight2.tar.gz Description: GNU Zip compressed data

Re: Problems with play action in DopeWars game

2009-06-17 Thread AG
Tzafrir Cohen wrote: On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote: What is very strange is that the problems are related to playing the game on this machine. My previous machine played it just fine, and it isn't the version either as far as I can tell, because I remove

Re: Problems with play action in DopeWars game

2009-06-17 Thread Tzafrir Cohen
On Wed, Jun 17, 2009 at 08:05:20AM +0100, AG wrote: > What is very strange is that the problems are related to playing the > game on this machine. My previous machine played it just fine, and it > isn't the version either as far as I can tell, because I removed the > Sq

Re: Problems with play action in DopeWars game

2009-06-17 Thread AG
ainer. Cheers, Eric Yeah - looked at doing that. Not much chance though. The SourceForge site lists last activity 2003 or so. Too bad - it was a fun game. Installed fine on my old machine but not on this. Even if there's no upstream activity, the bug could be fi

Re: Problems with play action in DopeWars game

2009-06-16 Thread Eric Gerlach
has an active maintainer. >> >> Cheers, >> >> > Eric > > Yeah - looked at doing that. Not much chance though. The SourceForge > site lists last activity 2003 or so. Too bad - it was a fun game. > Installed fine on my old machine but not on this. Even

Re: Problems with play action in DopeWars game

2009-06-16 Thread AG
ose of you who play the game may appreciate that selling several hundred items 1-by-1 is both tedious and a real drag to playing the game. I cannot lay my hands on the config file either, so cannot seem to change it from there if that is even an option. Any suggestions please?

Re: Problems with play action in DopeWars game

2009-06-16 Thread Eric Gerlach
time to be sold. Those of you who play the >> game may appreciate that selling several hundred items 1-by-1 is both >> tedious and a real drag to playing the game. >> >> I cannot lay my hands on the config file either, so cannot seem to >> change it from there if t

Re: Problems with play action in DopeWars game

2009-06-13 Thread AG
AG wrote: Hi When playing the GTK version of DopeWars in Squeeze, when one goes to sell one's purchases, the option to sell all at once doesn't work - it only allows 1 item at a time to be sold. Those of you who play the game may appreciate that selling several hundred items 1-by

Problems with play action in DopeWars game

2009-06-13 Thread AG
Hi When playing the GTK version of DopeWars in Squeeze, when one goes to sell one's purchases, the option to sell all at once doesn't work - it only allows 1 item at a time to be sold. Those of you who play the game may appreciate that selling several hundred items 1-by-1 is bo

Re: tremulous game

2009-04-19 Thread Shams Fantar
Hashimoto wrote: Hi, I just installed the game tremulous (aptitude install tremulous) but I can't play it. When I run "tremulous" the game opens but there's no server available on the list. I click on "refresh" but no servers shows up. Does anyone here play it

Re: tremulous game

2009-04-19 Thread Nuno Magalhães
# apt-cache search tremulous tremulous - Aliens vs Humans, team based FPS game with elements of an RTS tremulous-doc - Tremulous documentation tremulous-server - Tremulous server tremulous-data - Tremulous datas Install the server and config it for local use only? -- () ascii ribbon campaign

tremulous game

2009-04-19 Thread Hashimoto
Hi, I just installed the game tremulous (aptitude install tremulous) but I can't play it. When I run "tremulous" the game opens but there's no server available on the list. I click on "refresh" but no servers shows up. Does anyone here play it ? Any idea ? Thanks

Re: Can you recommend a game in etch?

2009-04-03 Thread Michael Pobega
avorite) tumiki-fighters first person shooters: prboom (doom engine) urbanterror (not a Debian package, http://urbanterror.net/) nexuiz (Quake-like deathmatch game) tremulous puzzle: worldofgoo (not free, $20 purchase; demo is available online though) frozen-bubble -- htt

Re: Can you recommend a game in etch?

2009-04-01 Thread Long Wind
I have installed freedroid I haven't figure out how to play it. On Wed, Apr 1, 2009 at 2:56 AM, Juha Tuuna wrote: > Freedroid is fun. Of course you can install Dosbox and play old DOS games. > > -- > Juha Tuuna > > > -- > To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org > with a subj

Re: Can you recommend a game in etch?

2009-04-01 Thread Juha Tuuna
Freedroid is fun. Of course you can install Dosbox and play old DOS games. -- Juha Tuuna -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Re: Can you recommend a game in etch?

2009-03-31 Thread Long Wind
I use twm :) On Wed, Apr 1, 2009 at 12:20 AM, Ron Johnson wrote: > On 2009-03-31 20:38, Long Wind wrote: >> >> I like simple action games >> Below are the kind of games I like: >> lbreakout2 >> tetris >> wolf3d for DOS from 3drealms >> raptor for DOS from 3drealms > > What DE/WM do you use? > > -

Re: Can you recommend a game in etch?

2009-03-31 Thread Ron Johnson
On 2009-03-31 20:38, Long Wind wrote: I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms What DE/WM do you use? -- Scooty Puff, Sr The Doom-Bringer -- To UNSUBSCRIBE, email to debian-user-requ...@lists.de

Re: Can you recommend a game in etch?

2009-03-31 Thread Michael Ekstrand
Long Wind writes: > I like simple action games > Below are the kind of games I like: > lbreakout2 > tetris > wolf3d for DOS from 3drealms > raptor for DOS from 3drealms Frozen Bubble is good fun. So is rafkill. - Michael -- mouse, n: A device for pointing at the xterm in which you want to typ

Can you recommend a game in etch?

2009-03-31 Thread Long Wind
I like simple action games Below are the kind of games I like: lbreakout2 tetris wolf3d for DOS from 3drealms raptor for DOS from 3drealms -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Re: How to launch installed chess game

2007-10-10 Thread Daniel Burrows
The Debian menu entry for eboard should be in Games/Board. Daniel -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Re: How to launch installed chess game

2007-10-10 Thread Chris Bannister
On Sun, Oct 07, 2007 at 01:30:45PM +, Oscar Corte wrote: > > Hello: > > I used Synaptic Package Manager to install ?eboard? (described a A Graphical > Chess program). > > The installation finished successfully but I can't find any option menu to > launch it. Could somebody give me any hint

Re: How to launch installed chess game

2007-10-07 Thread Celejar
On Sun, 7 Oct 2007 13:30:45 + Oscar Corte <[EMAIL PROTECTED]> wrote: > > Hello: > > I used Synaptic Package Manager to install “eboard” (described a A Graphical > Chess program). > > The installation finished successfully but I can't find any option menu to > launch it. Could somebody giv

How to launch installed chess game

2007-10-07 Thread Oscar Corte
Hello: I used Synaptic Package Manager to install “eboard” (described a A Graphical Chess program). The installation finished successfully but I can't find any option menu to launch it. Could somebody give me any hints in order to start the program? Thanks a lot in advance and regards ___

  1   2   3   >