Difference between revisions of "Felix"
(34 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{deprecated |
||
− | {{services |
||
+ | | This machine was replaced with [[Hydra]] and repurposed as [[Androbattery]]}} |
||
− | |ip_addr = 128.153.145.40 |
||
− | |contact_person = [[User:Jared|Jared Dunbar]] |
||
− | |last_update = ''Spring 2016'' |
||
− | |services = Various |
||
− | |category = Machines |
||
− | |handoff = no |
||
− | }} |
||
+ | ''Felix'' was constructed by Jared and Graham after ''[[Phoenix]]'' was unrecoverable without great effort. It was reformatted from the RAID 6 of ''Phoenix'' for the simplicity of the system and the expectation that nothing on ''Felix'' is really ever worth redundancy due to the likely inheritance of previous instability from ''Phoenix''. It was permanently retired from VM hosting and dedicated to "research" use in Fall 2016; in its place, [[Hydra]] was commissioned. |
||
− | {{Machine |
||
− | | screenshot = |
||
− | | maintainer = [[User:Jared|Jared Dunbar]] |
||
− | | hostname = felix.cslabs.clarkson.edu |
||
− | | operating_system = Debian |
||
− | | interface1 = {{Network Interface | name=Clarkson Network | mac=00:e0:81:b5:88:85 | ip=128.153.145.40}} |
||
− | | cpuspecs = Intel Xeon E5410 @ 2.33GHz |
||
− | | ramspecs = 12 GB DDR2 |
||
− | | hdd = 2TB of storage, 1TB of / and 1TB for dedicated /var (for vm's and http services to have their own space) |
||
− | }} |
||
− | |||
− | ''Felix'' was constructed by Jared and Graham after ''Phoenix'' was unrecoverable without great effort. It was reformatted from the RAID 6 of ''Phoenix'' for the simplicity of the system and the expectation that nothing on ''Felix'' is really ever worth redundancy due to the likely inheritance of previous instability from ''Phoenix''. |
||
''Felix'' was installed (on 1/15/16) from a Debian CLI install flashdrive with 64 bit Debian 8.2 Jessie. (Kernel 3.16.7 as of 1/15/16) |
''Felix'' was installed (on 1/15/16) from a Debian CLI install flashdrive with 64 bit Debian 8.2 Jessie. (Kernel 3.16.7 as of 1/15/16) |
||
+ | |||
+ | ==Setup== |
||
Install settings were the typical Debian settings with / being on the first 1 TB hard drive, and /var on the second 1 TB hard drive. The network interface that is connected is eth1. |
Install settings were the typical Debian settings with / being on the first 1 TB hard drive, and /var on the second 1 TB hard drive. The network interface that is connected is eth1. |
||
Line 27: | Line 12: | ||
After we finished installing we added the following packages: |
After we finished installing we added the following packages: |
||
<pre> |
<pre> |
||
− | htop vim libvirt0 libvirt-deamon |
+ | htop sudo vim libvirt0 libvirt-deamon libguestfs-tools p7zip-full virt-manager nvidia-legacy-304xx-driver screen rsync lm-sensors tmux dialog |
</pre> |
</pre> |
||
Line 33: | Line 18: | ||
<pre> |
<pre> |
||
− | # This file describes the network interfaces available on your system |
||
− | # and how to activate them. For more information, see interfaces(5). |
||
− | |||
source /etc/network/interfaces.d/* |
source /etc/network/interfaces.d/* |
||
Line 42: | Line 24: | ||
iface lo inet loopback |
iface lo inet loopback |
||
− | # The |
+ | # The hardware network interfaces |
allow-hotplug eth0 |
allow-hotplug eth0 |
||
allow-hotplug eth1 |
allow-hotplug eth1 |
||
allow-hotplug eth2 |
allow-hotplug eth2 |
||
+ | #The software network bridge (VM's route through this) |
||
auto br0 |
auto br0 |
||
iface br0 inet static |
iface br0 inet static |
||
− | + | address 128.153.145.40 |
|
− | + | netmask 255.255.254.0 |
|
− | + | gateway 128.153.144.1 |
|
− | + | bridge_ports all |
|
</pre> |
</pre> |
||
+ | |||
+ | Graphics Card Setup |
||
+ | |||
+ | sudo vim /etc/modprobe.d/blacklist.conf |
||
+ | <pre> |
||
+ | blacklist nouveau |
||
+ | blacklist nvidiafb |
||
+ | </pre> |
||
+ | |||
+ | ==Services== |
||
+ | |||
+ | |||
+ | *[[androbattery]] - [[User:xperia64 | xperia64]] |
||
+ | *[[moodle]] - [[User:Jared|Jared Dunbar]] |
||
+ | *[[Irc-server]] - [[User:Jared|Jared Dunbar]] |
||
+ | *[[gitlab]] - [[User:Jared|Jared Dunbar]], [[User:xperia64|xperia64]] |
||
+ | *[[comm]] - [[User:Jared|Jared Dunbar]] |
Latest revision as of 03:09, 5 November 2016
![]() |
This article discusses a deprecated technology or practice. Reason: This machine was replaced with Hydra and repurposed as Androbattery Visit the talk page for more information. |
Felix was constructed by Jared and Graham after Phoenix was unrecoverable without great effort. It was reformatted from the RAID 6 of Phoenix for the simplicity of the system and the expectation that nothing on Felix is really ever worth redundancy due to the likely inheritance of previous instability from Phoenix. It was permanently retired from VM hosting and dedicated to "research" use in Fall 2016; in its place, Hydra was commissioned.
Felix was installed (on 1/15/16) from a Debian CLI install flashdrive with 64 bit Debian 8.2 Jessie. (Kernel 3.16.7 as of 1/15/16)
Setup
Install settings were the typical Debian settings with / being on the first 1 TB hard drive, and /var on the second 1 TB hard drive. The network interface that is connected is eth1.
After we finished installing we added the following packages:
htop sudo vim libvirt0 libvirt-deamon libguestfs-tools p7zip-full virt-manager nvidia-legacy-304xx-driver screen rsync lm-sensors tmux dialog
The network interface is set up as follows:
source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback # The hardware network interfaces allow-hotplug eth0 allow-hotplug eth1 allow-hotplug eth2 #The software network bridge (VM's route through this) auto br0 iface br0 inet static address 128.153.145.40 netmask 255.255.254.0 gateway 128.153.144.1 bridge_ports all
Graphics Card Setup
sudo vim /etc/modprobe.d/blacklist.conf
blacklist nouveau blacklist nvidiafb