ComputerCraft Archive

CCKernel2: An Advanced Kernel for ComputerCraft

computer operating-system unknown forum

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_computercraft
wget:wget https://pastebin.com/raw/yY9StxvU cckernel2:_an_advanced_kernel_for_computercraft
Archive: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

forumprograms

Source

View Original Source

Code 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")