Quantcast
Channel: Comments for The Developer's Tidbits
Viewing all 373 articles
Browse latest View live

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Robert Schreiber

$
0
0

Hello,
I installed rpix86 on a raspberry 3 computer but am getting duplicate text on my screen. Also, the text size is very small, barely readable. Bob


Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Ben

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Eric Wiessner

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Ben

$
0
0

Thanks! Those broken wget links have been fixed.

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Doug Whiddon

$
0
0

Hi.

I haven’t touched this in months, but i got back to it this evening.

Your instructions are great for downloading, unpacking, installing, and then running dos. But, when you reboot the pi to play later you don’t need to download, unpack, and install – you just need to run it and it took me a good twenty minutes of playing around to figure out how to do that.

In my case it was 2 commands

cd dos (where dos was the name of the directory I installed this stuff in)
./rpix86 (it was the ./ that really had me stumped)

then I had my C: prompt and I’m playing Kings Quest like I was 12 again.

(i’ve written that on a bit of paper taped to my Pi for future refernce)

Is there anyway to set things so that it just does that automatically when I turn it on?

BTW, Im 43 and have had a computer since I was 6. I have some programming experience, some Linux experience and lots of hardware experience. I’m new to the Pi, but new tech does not scare me.

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Ben

$
0
0

Hi Doug,
Great to hear you got Kings Quest running on your Pi! I too used to be a massive Sierra Online fan as a child; Space Quest 2 was one of the first games I ever owned.

One problem I find with writing blog posts is they can become bloated too much information and turn readers off, so you have to be on the point.

In the DOS setup, chapter it does say where the rpix86 application will be stored, how to access it.

We are going to use a directory called /dos located in our pi home directory /home/pi/ to store our rpix86 related files.

cd ~/dos

And how to run rpix86.

Now uncompress and run rpix86.

./rpix86

I do agree it is a little subtle and I did assume most people would pick up on the keywords, especially since both DOS and Linux terminal share a similar procedure.

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Doug Whiddon

$
0
0

I’m not good at subtle. But, I did work it out in the end. and, I can see how you wouldn’t want to make an already long tutorial longer, but one sentence inserted just before “Basics of DOS shell.” would work, something like “the next time you want to run this simply type “cd dos” to change to the dos directory and “./rpix86” to start the emulator.

Comment on DOSBox Graphic and Machine Emulation, CGA, VGA, Tandy, PCJr, Hercules by Ryan O'Boril (@_ryan0)

$
0
0

Great article, very fascinating, thank you! My family owned a Tandy 1000 TL, and I had no idea it had such an interesting history. Tandy was kind of infamous for cloning things (my family also had a Tandyvision which was Intellivision with wood paneling, actually nicer looking IMO) and it was interesting but not surprising that they were able to take someone else’s failed line that they were cloning (PCJr) and make it a successful product of their own (and becoming their own supported DOS gaming platform). Thanks for the article!


Comment on DOSBox Graphic and Machine Emulation, CGA, VGA, Tandy, PCJr, Hercules by Ben

$
0
0

Thanks for your comment Ryan, I am delighted you enjoyed the article. I am never sure when writing if I should supplement historical flavour text, so I am happy you appreciated it.

You know the first computer we had at home was a Tandy 1000 HX, a compact machine that had limited upgrade capability. So as a kid I was envious of the 1000 TL that I would read about in the Tandy [our RadioShack] catalogues.

Comment on DosBox Beginners, Newbie and First Timers Guide by Alexandr Kosyrev

Comment on Run DOS on the Raspberry Pi – Use rpix86 to turn your Pi into a 1980s super-computer. by Nattavut Srisrual

$
0
0

What soft you use? STEP5, PCS for luaer can run via com1 or not?

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by David Charles Morse

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by Vasil Koicev

$
0
0

Hi Ben,

I would like to ask you:
1) how should I open tomcat via SSL
2) this structure how should be configured

test.com/ – static site from nginx
test.com/tomcat – tomcat manger (with working links)
test.com/app – tomcat app (deployed at /app on tomcat)

broken links are:
1) Open test.com/tomcat – fine
2) click the links in the this page point to test.com/manager/html
but the working address is test.com/tomcat/manager/html
– so I get 404 Not Found

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by Ben

Comment on Implement a SFTP Service for Ubuntu/Debian With a Chroot’ed, Isolated File Directory. by Jarreau Israel

$
0
0

I followed these steps and when I log in with test credentials, I can browse the entire server. My test user is not restricted to the ftp directory. While the user may not have write permission, it can still see everything. I need the user locked down to the ftp directory with no ability to browse anything but the contents of the one folder.
Any ideas here?


Comment on Implement a SFTP Service for Ubuntu/Debian With a Chroot’ed, Isolated File Directory. by Ben

$
0
0

Hi Jarreau, you may need to re-read the article and confirm you followed all the steps correctly. What you’re specifically wanting to do is covered and is known as the ‘ChrootDirectory’.

Comment on Make the Windows Command Prompt, Linux-like by 10basetom

$
0
0

Thanks for this very informative article — it was a good read 8).

To make the Windows console even more Unix/Linux-like, you can integrate clink (https://mridgers.github.io/clink/) to get searchable command line history and tab autocompletion listing (among other enhancements):

cmd.exe /k “C:\path\to\clink\clink.bat inject”

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by raphael alex (@aelkz)

$
0
0

This article is really great.
I just miss the configuration on how to route 80 to 8080 directly.
With this configuration, when I enter into my server:80 it opens the nginx home. Is there anything I can set to redirect directly into 8080 tomcat port? Thank you

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by raphael alex (@aelkz)

$
0
0

There is a problem when I open for example: server/index.jsp (where index.jsp is a index page from some application that was been deployed)
The static content (css/jpg/png/etc) is not being served. =(

Comment on Nginx as a Reverse-Proxy to Apache Tomcat by Ben

$
0
0

Hi Raphael, I suggest rereading the article again and make sure you have not missed a step.

Viewing all 373 articles
Browse latest View live




Latest Images