This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
server:joshua:start [2019/03/26 18:56] dwheele [Troubleshooting] |
server:joshua:start [2025/09/10 13:53] (current) dwheele [Joshua, Linux Server] |
||
|---|---|---|---|
| Line 2: | Line 2: | ||
| Purchased a small Intel NUC computer, which has a Intel Core i7 Processor, 8 Gb RAM (32 Gb maximum), 40 Gb SSD as a possible Minecraft server. | Purchased a small Intel NUC computer, which has a Intel Core i7 Processor, 8 Gb RAM (32 Gb maximum), 40 Gb SSD as a possible Minecraft server. | ||
| + | |||
| + | **Drives** | ||
| + | ^Device^Mounted^Size^Usage^ | ||
| + | ^/ | ||
| + | ^/ | ||
| + | ^/ | ||
| + | ^/ | ||
| + | |||
| + | ^Desc|Intel NUC| | ||
| + | ^S/ | ||
| + | ^SA|J31153-311| | ||
| + | ^Product Code|BOXNUC 7i7BNH| | ||
| + | ^Manu.|5/ | ||
| + | ^Comment|Intel NUC 7 Mainstream Kit\\ Core 7| | ||
| + | |||
| + | |||
| <code bash> | <code bash> | ||
| dwheele@joshua: | dwheele@joshua: | ||
| - | Linux joshua | + | Linux joshua |
| </ | </ | ||
| + | [as of 9/10/2025] | ||
| Line 14: | Line 31: | ||
| '' | '' | ||
| + | |||
| + | ===== Oracle XE ===== | ||
| + | |||
| + | For work, installed Oracle XE | ||
| + | |||
| + | The download was an rpm, so had to install '' | ||
| + | |||
| + | Also had to install libaio: | ||
| + | |||
| + | <code bash> | ||
| + | sudo apt-get install libaio1 | ||
| + | </ | ||
| + | |||
| + | https:// | ||
| + | |||
| + | ^Start|sudo systemctl start oracle-xe-18c| | ||
| + | ^Stop|sudo systemctl stop oracle-xe-18c| | ||
| + | ^Restart|sudo systemctl restart oracle-xe-18c| | ||
| + | |||
| Line 36: | Line 72: | ||
| network-test | network-test | ||
| </ | </ | ||
| + | |||
| + | ===== Kept going to sleep ===== | ||
| + | |||
| + | After doing some upgrades, server Joshua kept going to sleep. I read this, and tried it: | ||
| + | |||
| + | * https:// | ||
| + | |||
| + | //There is possibly a better way: edit / | ||
| + | |||
| + | < | ||
| + | AllowSuspend=no | ||
| + | AllowHibernation=no | ||
| + | </ | ||
| + | |||
| + | 2/9/2022 | ||
| + | |||
| + | ===== Installed minidlna, a DLNA/UPNP Server ===== | ||
| + | |||
| + | Wanted to serve photos to the Oculus from the file system. So installed MiniDLNA, a.k.a. ReadyMedia. | ||
| + | |||
| + | See https:// | ||
| + | |||
| + | sudo apt install minidlna | ||
| + | vi / | ||
| + | sudo service minidlna restart | ||
| + | sudo systemctl enable minidlna (not sure what this does) | ||
| + | |||
| + | Visible from Windows Media Player, Oculus Pigasus, Oculus DeoVR | ||
| + | |||
| + | |||
| + | ===== Couldn' | ||
| + | |||
| + | Received this error in / | ||
| + | |||
| + | <code text> | ||
| + | | ||
| + | </ | ||
| + | Fixed by running these: | ||
| + | |||
| + | <code bash> | ||
| + | |||
| + | |||
| + | root@someserver~]# | ||
| + | |||
| + | // Add this to end of file | ||
| + | PubkeyAcceptedKeyTypes +ssh-rsa | ||
| + | |||
| + | root@someserver ~]# systemctl restart sshd | ||
| + | </ | ||
| + | |||
| + | Reason? //This error occurs because the SHA RSA 1 algorithm that DeployHQ traditionally used for key generation, is no longer supported out the box in newer Linux systems.// | ||
| + | |||
| + | |||
| + | https:// | ||
| + | |||
| + | |||
| + | ====== Had problems when booting, apt upgrade' | ||
| + | |||
| + | |||
| + | Ran this: | ||
| + | < | ||
| + | sudo apt full-upgrade | ||
| + | </ | ||
| + | |||
| + | <code text> | ||
| + | Errors were encountered while processing: | ||
| + | | ||
| + | | ||
| + | | ||
| + | | ||
| + | E: Sub-process / | ||
| + | </ | ||
| + | |||
| + | Trying this: | ||
| + | < | ||
| + | sudo apt remove aufs-dkms | ||
| + | </ | ||
| + | |||
| + | ====== Wouldn' | ||
| + | |||
| + | I bought a large external HDD, modified fstab incorrectly. Kept getting errors on start up. | ||
| + | |||
| + | It kept asking me for the root password for maintenance. Unfortunately I didn't supply the right one (see usual KeePass for the server name). That allowed me to edit the /etc/fstab value to look like this instead: | ||
| + | |||
| + | <code bash> | ||
| + | UUID=135260b9-26cd-41b9-8e69-9489a5d3fe32 / | ||
| + | </ | ||
| + | |||
| + | (I had left off the rw,user value, causing the 0 and 1 to be in the wrong positions. [5/6/2025]) | ||
| + | |||
| + | |||
| + | |||
| + | |||