OculusOS is a unix like OS for the minecraft mod ComputerCraft and ComputerCraft Tweaked
pastebin run cCENE9mcwget https://raw.githubusercontent.com/Commandcracker/oculusos/master/build/installer.lua installer
installerlua
local a=http.get("https://raw.githubusercontent.com/Commandcracker/oculusos/master/build/installer.lua")local b=fs.open(shell.resolve("installer"),"w")b.write(a.readAll())b.close()a.close()exit()
installer| Modified | Parts | Library | Maintainer |
|---|---|---|---|
| AES Lua | SquidDev | ||
| Base64 | |||
| Big Font | Wojbie | ||
| cPrint | Jesusthekiller | ||
| X | CryptoNet | SiliconSloth | |
| Frame Buffer | lyqyd | ||
| Json | ElvishJerricco | ||
| SHA-256 | GravityScore | ||
| X | metis | SquidDev |
| Modified | Program | Maintainer |
|---|---|---|
| X | Net Shell/NSH | lyqyd |
| X | mbs/Mildly better shell | SquidDev |
Oculus OS has services that will run in the background.
Services will run before the boot process is finished,
This means that the Oculus OS libs and programs won't be available.
To create a service, just put a Lua file in /services
chatd
local hostname = os.getComputerLabel()
if not hostname then
hostname = os.getComputerID()
end
shell.run("chat", "host", hostname)sshd
local hostname = os.getComputerLabel()
if not hostname then
hostname = os.getComputerID()
end
shell.run("/bin/ssh", "host", hostname)You need to have Node.js Installed.
Then run this command to install luamin.
npm install luaminnode build