<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://altctrlarcade.hotcakesdeluxe.online/index.php?action=history&amp;feed=atom&amp;title=Configure-Ubuntu</id>
	<title>Configure-Ubuntu - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://altctrlarcade.hotcakesdeluxe.online/index.php?action=history&amp;feed=atom&amp;title=Configure-Ubuntu"/>
	<link rel="alternate" type="text/html" href="https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;action=history"/>
	<updated>2026-07-31T00:31:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;diff=133&amp;oldid=prev</id>
		<title>Arcadely: Added all the stuff to get a game running on ubuntu server. didn&#039;t get to user accounts yet.</title>
		<link rel="alternate" type="text/html" href="https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;diff=133&amp;oldid=prev"/>
		<updated>2025-04-30T13:28:21Z</updated>

		<summary type="html">&lt;p&gt;Added all the stuff to get a game running on ubuntu server. didn&amp;#039;t get to user accounts yet.&lt;/p&gt;
&lt;a href=&quot;https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;amp;diff=133&amp;amp;oldid=68&quot;&gt;Show changes&lt;/a&gt;</summary>
		<author><name>Arcadely</name></author>
	</entry>
	<entry>
		<id>https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;diff=68&amp;oldid=prev</id>
		<title>Arcadely: adding initial setup</title>
		<link rel="alternate" type="text/html" href="https://altctrlarcade.hotcakesdeluxe.online/index.php?title=Configure-Ubuntu&amp;diff=68&amp;oldid=prev"/>
		<updated>2025-02-06T17:09:10Z</updated>

		<summary type="html">&lt;p&gt;adding initial setup&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;= Introduction = &lt;br /&gt;
&lt;br /&gt;
== Install Ubuntu ==&lt;br /&gt;
{{Warning | Note: your installation of Ubuntu may be different depending on which computer you have.}}&lt;br /&gt;
&lt;br /&gt;
* write usb drive with `win32diskimager` -&amp;gt; `ubuntu-20.04.1-desktop-amd64.iso` &lt;br /&gt;
&lt;br /&gt;
* plug in your USB -&amp;gt; reboot -&amp;gt; repeatedly hit esc -&amp;gt; save and exit -&amp;gt; select usb  &lt;br /&gt;
&lt;br /&gt;
* plug UDOO bolt into internet (This will be required at the beginning for updating the OS and downloading some specific packages. &lt;br /&gt;
&lt;br /&gt;
=== minimal installation ===&lt;br /&gt;
* elect to download updates  &lt;br /&gt;
* elect to install thirdparty software.&lt;br /&gt;
** this is recommended as a lot of game engines require third party libraries to run their runtimes. (Such as Unity) &lt;br /&gt;
* Set username for Admin:&lt;br /&gt;
** Name: &amp;lt;Choose your administrative name here&amp;gt;&lt;br /&gt;
** Password: Choose a REALLY good password, since this will have administrative access. &lt;br /&gt;
* Don&amp;#039;t opt for any of the suggested setup stuff  &lt;br /&gt;
* software update should appear. Reboot on completion&lt;br /&gt;
&lt;br /&gt;
=== (Optional) FTP between Ubuntu and Windows ===&lt;br /&gt;
In the case that you don&amp;#039;t want to move a flashdrive in between your dev machine and the game machine, you may want to use FTP (File Transfer Protocol) to send builds straight to your machine. &lt;br /&gt;
&lt;br /&gt;
An excellent instruction set can be found here: [https://techmonger.github.io/3/linux-windows-ftp/ | Transfer Files between Ubuntu and Windows with FTP]&lt;br /&gt;
In summary however: &lt;br /&gt;
* Open a terminal (Super + T)&lt;br /&gt;
* &amp;lt;code&amp;gt;sudo apt-get install vsftpd&amp;lt;/code&amp;gt;  &lt;br /&gt;
* uncomment &amp;lt;code&amp;gt;write_enable=YES&amp;lt;/code&amp;gt; in &amp;lt;code&amp;gt;/etc/vsftpd.conf&amp;lt;/code&amp;gt;  &lt;br /&gt;
** to open, type &amp;lt;code&amp;gt; sudo nano /etc/vsftpd.conf&amp;lt;/code&amp;gt;. This will open the config file in the nano editor, where you can remove the comment. &lt;br /&gt;
* restart FTP service &lt;br /&gt;
** &amp;lt;code&amp;gt;sudo service vsftpd restart`&amp;lt;/code&amp;gt;&lt;br /&gt;
*firewall&lt;br /&gt;
**&amp;lt;code&amp;gt;sudo ufw enable&amp;lt;/code&amp;gt;   &lt;br /&gt;
**and &amp;lt;code&amp;gt;sudo ufw allow ftp&amp;lt;/code&amp;gt;  &lt;br /&gt;
* network&lt;br /&gt;
** &amp;lt;code&amp;gt;sudo apt install net-tools&amp;lt;/code&amp;gt;&lt;br /&gt;
** then use &amp;lt;code&amp;gt;ifconfig&amp;lt;/code&amp;gt; to retrieve the IP Address.  &lt;br /&gt;
*Now in Windows: Open Powershell/CMD:&lt;br /&gt;
** In powershell or cmd: &amp;lt;code&amp;gt;ftp &amp;lt; linux IP &amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
** enter uname and pword &lt;br /&gt;
** &amp;lt;code&amp;gt;cd Desktop&amp;lt;/code&amp;gt; Or whichever directory you want to build to be placed.  &lt;br /&gt;
** &amp;lt;code&amp;gt;put [buildname].zip&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Adding Vulkan Support ===&lt;br /&gt;
Here is a decent [https://linuxconfig.org/install-and-test-vulkan-on-linux Guide on installing Vulkan on Linux]&lt;br /&gt;
In Summary:&lt;br /&gt;
* Open a terminal on your linux machine and type:&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
sudo add-apt-repository ppa:oibaf/graphics-drivers &amp;lt;br&amp;gt;&lt;br /&gt;
sudo apt update &amp;lt;br&amp;gt;&lt;br /&gt;
sudo apt upgrade  &amp;lt;br&amp;gt;&lt;br /&gt;
sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-tools&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;/div&gt;</summary>
		<author><name>Arcadely</name></author>
	</entry>
</feed>