Ubuntu: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Tw (Diskussion | Beiträge) KKeine Bearbeitungszusammenfassung |
Tw (Diskussion | Beiträge) Markierung: wikieditor |
||
| (19 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
| Zeile 1: | Zeile 1: | ||
[[File:Putty3.png|right|thumb|350px|putty]] | |||
__TOC__ | __TOC__ | ||
<br /> | <br /> | ||
== Step-by-Step Instructions == | == Step-by-Step Instructions == | ||
=== Update packages and Distribution === | === Update packages and Distribution === | ||
| Zeile 23: | Zeile 23: | ||
For more detailed instructions or official troubleshooting, consult the [https://ubuntu.com/server/docs/how-to/software/upgrade-your-release/|Ubuntu Release Upgrade Documentation]. | For more detailed instructions or official troubleshooting, consult the [https://ubuntu.com/server/docs/how-to/software/upgrade-your-release/|Ubuntu Release Upgrade Documentation]. | ||
=== VICE Linux === | |||
<br /> | |||
VICE kompilieren Ubuntu: [https://wiki.ubuntuusers.de/VICE/ VICE Ubuntu] | |||
[[VICE|VICE Wiki Seite]] | |||
==== Update ==== | |||
svn up | |||
make | |||
sudo make install | |||
=== VICE Mingw === | |||
<br /> | |||
==== Install MINGW ==== | |||
sudo apt install g++-mingw-w64-x86-64 | |||
==== Install MXE ==== | |||
[https://mxe.cc/#tutorial MXE Tutorial] | |||
<br> | |||
==== Get VICE Sources ==== | |||
svn checkout https://svn.code.sf.net/p/vice-emu/code/trunk trunk | |||
==== Build VICE Sources ==== | |||
cd vice-trunk/vice | |||
./autogen.sh | |||
Try to configure a minimal build of the Gtk3 port: | |||
./configure --enable-gtk3ui --enable-arch=no --disable-pdf-docs --host=x86_64-w64-mingw32 LDFLAGS="-lssp" | |||
==== Update ==== | |||
svn up | |||
make | |||
sudo make install | |||
Aktuelle Version vom 28. August 2026, 15:18 Uhr

Step-by-Step Instructions
Update packages and Distribution
- Refresh local package lists to check for the newest software versions:
sudo apt update
- Upgrade existing packages on your system:
sudo apt upgrade -y
- Perform a distribution upgrade to handle changing dependencies and install any remaining held or phased updates:
sudo apt dist-upgrade -y
- Reboot your system if required (check if /run/reboot-required exists):
sudo rebootFor more detailed instructions or official troubleshooting, consult the Ubuntu Release Upgrade Documentation.
For more detailed instructions or official troubleshooting, consult the Release Upgrade Documentation.
VICE Linux
VICE kompilieren Ubuntu: VICE Ubuntu
Update
svn up make sudo make install
VICE Mingw
Install MINGW
sudo apt install g++-mingw-w64-x86-64
Install MXE
Get VICE Sources
svn checkout https://svn.code.sf.net/p/vice-emu/code/trunk trunk
Build VICE Sources
cd vice-trunk/vice ./autogen.sh
Try to configure a minimal build of the Gtk3 port:
./configure --enable-gtk3ui --enable-arch=no --disable-pdf-docs --host=x86_64-w64-mingw32 LDFLAGS="-lssp"
Update
svn up make sudo make install