1
0
mirror of https://github.com/rricharz/Tek4010.git synced 2026-01-11 23:53:16 +00:00

Added instructions for windows and updated instructions for macOS

This commit is contained in:
Rene Richarz 2024-07-07 10:55:37 +02:00
parent b0ebac235c
commit d2e2ba1f87
5 changed files with 68 additions and 16 deletions

Binary file not shown.

Binary file not shown.

View File

@ -2,12 +2,12 @@
# Tektronix 4010 and 4014 Storage Tube Terminal Emulator
This is a [Tektronix 4010, 4013, 4014 and 4015](https://en.wikipedia.org/wiki/Tektronix_4010)
terminal emulator for the Raspberry Pi, Linux and MacOS (Macintosh). A version for Windows is
not available.
terminal emulator for the Raspberry Pi, Linux, macOS (Macintosh) and Windows.
All instructions can be found in [Manual.pdf](https://github.com/rricharz/Tek4010/blob/master/Manual.pdf)
in the main Tek4010 directory. The installation is described there, except for MacOS, see the
macintosh.txt file in the repository.
in the main Tek4010 directory. The installation is described there. For macOS, start with the preparation instructions in
[macintosh.txt](https://github.com/rricharz/Tek4010/blob/master/macintosh.txt) in this repository. For Windows, start with
the preparation instructions in [windows.txt](https://github.com/rricharz/Tek4010/blob/master/windows.txt) in this repository.
![screen_shot](screendump.png?raw=true "tek4010 screendump")

View File

@ -1,10 +1,8 @@
Tek4010 on macOS
================
tek4010 can also be built on macOS. This is experimental
at present and any help to make the installation easier is
appreciated. At present this is only for experienced
command line users.
tek4010 can also be built on macOS. If you are prepared to
use the command line interface, proceed as follows.
Open a terminal window and type
@ -28,19 +26,21 @@ Type the following commands in your terminal window:
9. git clone https://github.com/rricharz/Tek4010
10. make clean
10. cd Tek4010
11. make
11. make clean
12. make install
12. make
13. Add PATH="$HOME/.local/bin:$PATH" to your ~/.zprofile file
13. make install
14. Reboot your Mac
14. Add PATH="$HOME/.local/bin:$PATH" to your ~/.zprofile file
15. Test with
cd ~/Tek4010
tek4010 demos/demo.sh
15. Reboot your PC
16. Test with
cd Tek4010
make check
There are a few minor problems at present, see the
issues in the github repository

52
windows.txt Normal file
View File

@ -0,0 +1,52 @@
Tek4010 on Windows
==================
tek4010 can also be built on Windows. If you are prepared to
use the command line interface, proceed as follows:
Open a terminal window and type
1. wsl --install -d Ubuntu
2. Then reboot your system.
3. After the reboot you will be asked for a user name and
a password for Ubuntu. These will be your Linux
credentials. They do not need to be identical with
your windows credentials.
Note, on Ubuntu, there is no root password. Use your
normal password in sudo below.
You should now find a Ubuntu and a wsl icon in your
start menu. Start either one of them.
4. sudo apt-get update
5. sudo apt-get upgrade
4. sudo apt-get install libgtk-3-dev
5. sudo apt-get install make
6. sudo apt-get install gcc
7. sudo apt-get install pkgconfig
8. git clone https://github.com/rricharz/Tek4010
9. cd Tek4010
10. make clean
11. make
12. make install
13. Add PATH="$HOME/.local/bin:$PATH" to your ~/.zprofile file
14. Reboot your PC
15. Test with
cd Tek4010
make check