CCKernel2: An Advanced Kernel for ComputerCraft
Description
After many months of work, my custom CraftOS kernel, CCKernel2, is ready for a beta release. CCKernel2 adds to and extends standard CraftOS 1.8 to provide more control over the operating system, inclu...
Installation
Copy one of these commands into your ComputerCraft terminal:
Pastebin:
pastebin get yY9StxvU cckernel2:_an_advanced_kernel_for_computercraftwget:
wget https://pastebin.com/raw/yY9StxvU cckernel2:_an_advanced_kernel_for_computercraftArchive:
wget https://cc.shobie.xyz/cc/get/pb-yY9StxvU cckernel2:_an_advanced_kernel_for_computercraft
Quick Install:
wget https://cc.shobie.xyz/cc/get/pb-yY9StxvU CCKernel2: An Advanced Kernel for ComputerCraft
Usage
Run the program after downloading
Tags
Source
View Original SourceCode Preview
print("Downloading latest installer...")
local file = http.get("https://raw.githubusercontent.com/MCJack123/CCKernel2/master/CCKernel2Installer.lua")
local out = fs.open("install.lua", "w")
out.write(file.readAll())
file.close()
out.close()
shell.run("/install.lua")
fs.delete("/install.lua")