Additional steps to upgrade Golang and use new command line parameters for the service (if you had set up before October 11, 2021) #66
tjboldt
announced in
Announcements
Replies: 1 comment
-
Note that enough has changed since then that you might want to start over setting up from scratch, starting at step 4 in #63 instead of just updating Golang. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Additional steps to upgrade Golang and use new command line parameters for the service (if you had set up before October 11, 2021)
This must be done via ssh directly into the RPi:
sudo apt remove golang
wget https://golang.org/dl/go1.17.3.linux-armv6l.tar.gz
sudo tar -C /usr/local -xzf go1.17.3.linux-armv6l.tar.gz
~/.profile
with your favourite editor and add the following:PATH=$PATH:/usr/local/go/bin
GOPATH=$HOME/golang
cd ~/
git clone https://github.com/tjboldt/ProDOS-Utilities.git
cd ProDOS-Utilities
cd ~/Apple2-IO-RPi/RaspberryPi/apple2driver
go build
crontab -e
then edit the line to be@reboot . /home/pi/.profile; /home/pi/Apple2-IO-RPi/RaspberryPi/apple2driver/apple2driver -d1 YOUR_DRIVE.hdv -d2 /home/pi/Apple2-IO-RPi/RaspberryPi/Apple2-IO-RPi.hdv > /home/pi/Apple2-IO-RPi/RaspberryPi/Apple2-IO-RPi.log
) or simply@reboot /home/pi/Apple2-IO-RPi/RaspberryPi/apple2driver/apple2driver > /home/pi/Apple2-IO-RPi/RaspberryPi/Apple2-IO-RPi.log
if you don't need your own drive image.Beta Was this translation helpful? Give feedback.
All reactions