Jump to content
  • Sky
  • Blueberry
  • Slate
  • Blackcurrant
  • Watermelon
  • Strawberry
  • Orange
  • Banana
  • Apple
  • Emerald
  • Chocolate
  • Charcoal

TYKUHN2

Members
  • Content Count

    49
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by TYKUHN2

  1. As mentioned, I abandoned it a while ago, but I managed to save a local copy of the repo and re-uploaded it here. Please note: The wrapper was in the process of gaining write ability when it was abandoned. Furthermore the wrapper is designed for data while the boot loader uses a executable format and are not compatible. Don't forget you can pull request the repo with any additions :D.

  2. You can find a unmanaged booting EEPROM here however it's not fully adapted outside of it's original use so poke around maybe even modify it (I'd recommend removing the managed boot feature.)

     

    I'd also offer up a wrapper I made but a while ago I scrapped a large portion of it and never patched it.

  3. Pros of Processing on Client:

    -Easier file access

    Pros of Processing on Server:

    -More Secure

    -Faster

    -No harder file access

     

    Oh and as for you analogy, MC processes on the server too. You send a keypress to the server and the SERVER breaks the block depending on if it wants you to. This can be seen under high-lag circumstances with the block reappearing (server didn't acknowledge) also command blocks and redstone all server sided.

  4. All libraries that are required by "require" are generally part of OpenOS meaning if you're using an eeprom... good luck.

    Also component.primary or component.filesystem are not native. They are part of OpenOS.

    BIOS don't have libraries thus it doesn't have require.

    What they do have is components. Everything plopped into your computer is a component, including that disk drive. OpenOS is not special it is something you can make from hand using what is given to you.

    Also "require" is not much more than loading and executing a file.

  5. I had an issue with this as well. It's not well documented. Once it's connected add another normal server running whatever OS (ex. OpenOS) and connect them both to the same side of the rack.

     

    If that's not it then powercycle the primary server.

     

    Finally try with all cables connected via the bottom.

     

    That last one should make no difference

  6. What did you set io.stderr.path to?

     

    For verbose error logging try

    oldStderr = io.stderr
    
    function io.stderr:write(str)
    	logFile, err = filesystem.open(self.path, "a")
            if not logFile then
                io.stderr = oldStderr
                error(err)
            end
    	logFile:write(str.."\n")
    	logFile:close()
    	return self
    end
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.