<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://10.10.10.64/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=10.10.10.60</id>
	<title>Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://10.10.10.64/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=10.10.10.60"/>
	<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php/Special:Contributions/10.10.10.60"/>
	<updated>2026-06-13T15:29:45Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.17</generator>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=25</id>
		<title>Steps for Linux post-installation tasks</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=25"/>
		<updated>2018-02-12T14:47:57Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: /* Add the server to landscape */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install Linux ==&lt;br /&gt;
First step is to install Linux.  For Hyper-V VMs, 1024 MB of RAM is typically more than enough.  Sometimes 512 will be plenty.&lt;br /&gt;
&lt;br /&gt;
== Set up the NAS ==&lt;br /&gt;
#Install cifs-utils&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo apt-get update&amp;lt;/code&amp;gt;&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo apt-get install cifs-utils&amp;lt;/code&amp;gt;&lt;br /&gt;
#Make directory /mnt/Storage&lt;br /&gt;
##&amp;lt;code&amp;gt;sudo mkdir /mnt/Storage&amp;lt;/code&amp;gt;&lt;br /&gt;
#Enter the below into /etc/fstab (&amp;lt;code&amp;gt;sudo nano /etc/fstab&amp;lt;/code&amp;gt;)&lt;br /&gt;
##&amp;lt;code&amp;gt;//10.10.10.20/Storage  /mnt/Storage cifs guest,uid=1000,iocharset=utf8 0  0&amp;lt;/code&amp;gt;&lt;br /&gt;
#Run &amp;lt;code&amp;gt;sudo mount-a&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Set up SSH access ==&lt;br /&gt;
#On cougar, run &amp;lt;code&amp;gt;ssh-copy-id &amp;lt;ip address&amp;gt;&amp;lt;/code&amp;gt; and answer prompts.&lt;br /&gt;
#SSH into the machine to make sure it works.&lt;br /&gt;
#Run &amp;lt;code&amp;gt;sudo nano /etc/ssh/sshd_config&amp;lt;/code&amp;gt;&lt;br /&gt;
##Change #PasswordAuthentication yes to PasswordAuthentication no&lt;br /&gt;
##Reload ssh by running &amp;lt;code&amp;gt;sudo service ssh restart&amp;lt;/code&amp;gt;&lt;br /&gt;
##To test whether everything is working, ssh into another Linux server and test by attempting to ssh into the server you&#039;re setting up.  It should fail with a Permission denied (pubkey).  If not, then recheck changing the SSH config.&lt;br /&gt;
&lt;br /&gt;
== Add the DNS record to the DNS server ==&lt;br /&gt;
#Remote into Zeus (Or launch the DNS Management Console on cougar as an administrator (lbrandt), then proceed to step 3)&lt;br /&gt;
#Launch the DNS Management Console&lt;br /&gt;
#Expand Forward Lookup Zones.&lt;br /&gt;
#Click on lukebrandt.com&lt;br /&gt;
#Right-click on lukebrandt.com, then select New Host (A or AAAA)&lt;br /&gt;
#Enter the computer name, IP Address, and verify that the PTR checkbox is checked.&lt;br /&gt;
#The DNS record should now be added!&lt;br /&gt;
&lt;br /&gt;
== Add the server to guacamole ==&lt;br /&gt;
#Navigate to the [http://guacamole.lukebrandt.com:8787/guacamole guacamole web console]&lt;br /&gt;
#Click on guacadmin in the upper right-hand corner, then click on Settings&lt;br /&gt;
#Click on Connections&lt;br /&gt;
#Click on any of the existing Linux servers&lt;br /&gt;
#Scroll down to the bottom and click Clone&lt;br /&gt;
#Change the Name and the Hostname fields to match the new server.&lt;br /&gt;
#Click Save.&lt;br /&gt;
#The new server is now available in guacamole.&lt;br /&gt;
&lt;br /&gt;
== Add the server to landscape ==&lt;br /&gt;
#SSH into the new server&lt;br /&gt;
#Run &amp;lt;code&amp;gt;sudo apt update&amp;lt;/code&amp;gt;&lt;br /&gt;
#Run &amp;lt;code&amp;gt;sudo apt install landscape-client&amp;lt;/code&amp;gt;&lt;br /&gt;
#Run &amp;lt;code&amp;gt;sudo landscape-config --computer-title &amp;quot;My Web Server&amp;quot; --account-name standalone  --url https://landscape.lukebrandt.com/message-system --ping-url http://landscape.lukebrandt.com/ping&amp;lt;/code&amp;gt;, replacing &amp;quot;My Web Server&amp;quot; with the name of the new server.&lt;br /&gt;
##If you get an error regarding the internet being down, change the &amp;lt;code&amp;gt;landscape.lukebrandt.com&amp;lt;/code&amp;gt; part of the URLs to the IP address of the server.&lt;br /&gt;
#Accept most of the defaults.  When prompted for script users, enter luke.  Use the server name as the tag and &amp;lt;code&amp;gt;production&amp;lt;/code&amp;gt; as the Access Group.&lt;br /&gt;
#Once you add as a new registration, there will most likely be an error regarding an &amp;lt;code&amp;gt;ssl_public_key&amp;lt;/code&amp;gt;&lt;br /&gt;
##To rectify this, run &amp;lt;code&amp;gt;sudo cp /mnt/data/Dropbox/landscape_server_ca.crt /etc/landscape/&amp;lt;/code&amp;gt;&lt;br /&gt;
##Then run &amp;lt;code&amp;gt;sudo nano /etc/landscape/client.conf&amp;lt;/code&amp;gt;&lt;br /&gt;
##Change or add the following line: &amp;lt;code&amp;gt;ssl_public_key = /etc/landscape/landscape_server_ca.crt&amp;lt;/code&amp;gt;&lt;br /&gt;
##Run the registration again, accepting all the defaults.  It should now register.&lt;br /&gt;
#Once the terminal reports that the registration is successful, navigate to [https://landscape.lukebrandt.com/account/standalone/pending-computers the landscape web console Pending Computers page].  There should be an alert waiting for a computer to be registered.&lt;br /&gt;
#Click on the computer waiting registration and Accept it.&lt;br /&gt;
#The server should now be added to landscape.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: IT]]&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=14</id>
		<title>Steps for Linux post-installation tasks</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=14"/>
		<updated>2017-10-06T16:34:56Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: /* Contents */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Install Linux ==&lt;br /&gt;
First step is to install Linux.  For Hyper-V VMs, 1024 MB of RAM is typically more than enough.  Sometimes 512 will be plenty.&lt;br /&gt;
&lt;br /&gt;
== Set up the NAS ==&lt;br /&gt;
1) Install cifs-utils&lt;br /&gt;
sudo apt update&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: IT]]&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=13</id>
		<title>Steps for Linux post-installation tasks</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=13"/>
		<updated>2017-10-06T16:33:04Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Contents ==&lt;br /&gt;
1) Install Linux&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: IT]]&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=12</id>
		<title>Steps for Linux post-installation tasks</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Steps_for_Linux_post-installation_tasks&amp;diff=12"/>
		<updated>2017-10-06T16:32:23Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: Created page with &amp;quot;Category: IT&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category: IT]]&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Category:IT&amp;diff=11</id>
		<title>Category:IT</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Category:IT&amp;diff=11"/>
		<updated>2017-10-06T16:29:50Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
	<entry>
		<id>http://10.10.10.64/mediawiki/index.php?title=Category:IT&amp;diff=10</id>
		<title>Category:IT</title>
		<link rel="alternate" type="text/html" href="http://10.10.10.64/mediawiki/index.php?title=Category:IT&amp;diff=10"/>
		<updated>2017-10-06T16:29:39Z</updated>

		<summary type="html">&lt;p&gt;10.10.10.60: Created page with &amp;quot;Steps for Linux post-installation tasks&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Steps for Linux post-installation tasks]]&lt;/div&gt;</summary>
		<author><name>10.10.10.60</name></author>
	</entry>
</feed>