All public logs

Jump to navigation Jump to search

Combined display of all available logs of Minux Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)
  • 00:27, 14 October 2024 Shorun talk contribs created page Binaries/netlib.sh (Created page with "the netlib binary is a part of the netlib package and used to listen for incomming messages sent with the netlib api this is a diagnostics tool. '''usage:''' netlib '''output:''' prints any incomming messages on screen") Tag: Visual edit
  • 00:26, 14 October 2024 Shorun talk contribs created page Binaries/sendfile.sh (Created page with "the sendfile binary is a part of the netlib package and used to send files to a system waiting with getfile '''usage:''' sendfile clientid file '''output:''' sends "file" to "clientid" '''eg:''' "''sendfile 5 /test.txt''" - sends "/test.txt" to computer id 5") Tag: Visual edit
  • 00:24, 14 October 2024 Shorun talk contribs created page Binaries/getfile.sh (Created page with "the getfile binary is a part of the netlib package and used to receive incomming files sent with sendfile '''usage:''' getfile clientid file '''output:''' waits for clientid to send a file and if successfull writes it to the location in file '''eg:''' "getfile 5 /test.txt" - waits for computer 5 to send a file and stores it in "/test.txt"") Tag: Visual edit
  • 00:22, 14 October 2024 Shorun talk contribs created page Binaries/ping.sh (Created page with "the ping binary is a part of the [https://wolfpak.vtchost.com/forum/viewtopic.php?f=17&t=164&p=172&sid=2985882c94cc3717be70c8c0bb51fc92#p172 netlib package] and used to test if a system is responding '''usage:''' ping systemid '''output:''' prints the results on screen") Tag: Visual edit
  • 00:09, 14 October 2024 Shorun talk contribs created page Api/netlib.gettable() (Created page with "netlib function used to receive a table expected to be sent with "sendtable" sendtable will first send a regular rednet message with the string "sendtable", when you catch this you know a table is comming next '''usage:''' local table = netlib.gettable(client) '''output:''' returns the table if successfull, returns false if failed") Tag: Visual edit
  • 00:06, 14 October 2024 Shorun talk contribs created page Api/netlib.sendtable() (Created page with "netlib function used to send a table to another system it will first send a regular rednet message with the string "sendtable", your listen program needs to catch this, after that, use "gettable" to receive it. '''usage:''' local temp = netlib.sendtable(client, table) '''output:''' sends the table provided to the client returns true if successfull, returns false if failed") Tag: Visual edit
  • 00:01, 14 October 2024 Shorun talk contribs created page Api/netlib.getstring() (Created page with "netlib function used to receive a string expected to arrive with "sendstring" it will verify the string with the sender, it needs to know who will be sending the string. '''usage:''' local temp = netlib.receive(client) '''output:''' returns the string if the data was verified returns false if it failed to verify") Tag: Visual edit
  • 23:56, 13 October 2024 Shorun talk contribs created page Api/netlib.sendstring() (Created page with "netlib function used to send a string to another system this will first send a regular rednet message with the string "sendstring" so the receiving side knows to expect a string, this is required for a "listen" program that listens for incomming calls. after this the string you include is properly transmitted to the other party. '''usage:''' local temp = netlib.sendstring(client, string) '''output:''' transmits "string" to a netlib capable system,...") Tag: Visual edit
  • 23:50, 13 October 2024 Shorun talk contribs created page Api/netlib.getping() (Created page with "netlib function used to respond to a ping used to respond to a ping, if required in the protocol in use. '''usage:''' getping(client) '''output:''' replies to an incomming ping in a proper way") Tag: Visual edit
  • 23:46, 13 October 2024 Shorun talk contribs created page Api/netlib.ping() (Created page with "netlib function used to test if a system is alive. ping sends a simple ping to another system to test if it is able to respond. '''usage:''' local returnvalue = netlib.ping(client) '''output:''' true if reply has been received, false if not.") Tag: Visual edit
  • 23:43, 13 October 2024 Shorun talk contribs created page Api/netlib (Created page with "netlib Api, included in [https://wolfpak.vtchost.com/forum/viewtopic.php?f=17&t=164&sid=2985882c94cc3717be70c8c0bb51fc92 "netlib"] package, used to regulate network communication. placeholder") Tag: Visual edit
  • 01:24, 10 October 2024 Shorun talk contribs created page Api/minux.insertline() (Created page with "this function is part of the minux. api and used to insert a line into a file it appends it to the back of the file '''usage:''' local temp = minux.insertline(filename, inputstring) '''output:''' true or false depending on success, adds inputstring to the back of filename") Tag: Visual edit
  • 22:57, 8 October 2024 Shorun talk contribs created page Api/minux.getconfig() (Created page with "minux api used to get the system's configuration '''usage:''' local string = minux.getconfig(type) '''Arguments:''' - login | return can be: "network", "local", "disabled" - - update | return can be: "always, "enabled", "disabled" - ui | return can be: "prompt", "menu" or "workspace" - debug | return can be: "disabled", "enabled", "logging", "full" '''output:''' gets the desired setting local temp = minux.getconfig("login") - retrieves this ma...") Tag: Visual edit
  • 22:55, 8 October 2024 Shorun talk contribs created page Api/minux.setconfig() (Created page with "minux api used to change the system's configuration '''usage:''' local bool = minux.setconfig(type, setting) '''Arguments:''' - login , setting | setting can be: "network", "local", "disabled" - - update, setting | setting can be: "always, "enabled", "disabled" - ui , setting | setting can be: "prompt", "menu" or "workspace" - debug, setting | setting can be: "disabled", "enabled", "logging", "full" '''output:''' returns false if failed, true if...") Tag: Visual edit
  • 15:36, 7 October 2024 Shorun talk contribs created page Manuals/welcomescreen (Created page with "This manual will guide you trough changing your welcome screen the examples we give here are just examples, this method works for any potential welcome screen '''downloading extra screens''' first up, we will need some welcome screens and additional software libraries, these can be installed using the following command: <code>apt -i devlib && apt -i flags</code> you can now find the new files in /var/flags '''installing the file''' when you've made y...") Tag: Visual edit
  • 15:30, 7 October 2024 Shorun talk contribs created page Api/dev.prepfile() (Created page with "this function is part of the dev. api and used to prepaire a file for printing in particular, this api will take each line and if it's longer then 25 characters move it to the next line, ensuring your print fits the page. this can then be fed into printfile() for printing '''usage:''' dev.prepfile(filepath) '''output:''' prints the contents of the provided file, splits it up into several pages, does NOT format the text to fit the pages, simply prints...") Tag: Visual edit
  • 15:26, 7 October 2024 Shorun talk contribs created page Binaries/vaultcontents (Created page with "this binary is part of the vaultcontents package, it launches the vaultcontents program '''useage:''' vc '''output:''' launches the vaultcontents program") Tag: Visual edit
  • 15:22, 7 October 2024 Shorun talk contribs created page Manuals/Vaultcontents (Created page with "apt repository - <nowiki>https://jam21lee5.com/apt/</nowiki> program name:"vaultcontents" installation: "apt -i vaultcontents" alias: "vc" created by "jam21lee5" '''Requirements:''' Needs a monitor of 4 tall and 3 wide to function at default 24 lines (wich is max the vault block allows) the computer requires minux to be installed and functional, only the base is enough. it can be a basic or advanced computer. set the computer to login...") Tag: Visual edit
  • 03:38, 4 October 2024 Shorun talk contribs created page Binaries/workspace (Created page with "makeboot is a binary used to run multiple sessions on one computer, it can be run on a basic computer allowing for multiple shells on those as well. workspace launches Bash shell in minux, not craftOS shell, other then that it is exactly as LDdestroïer made it, all credits to him. '''usage:''' workspace '''output:''' Launches the workspace program made by LDDestroïer") Tag: Visual edit
  • 23:59, 3 October 2024 Shorun talk contribs created page Api/minux.printline() (Created page with "his function is part of the minux. api and used to print a specific line of a file '''usage:''' local temp = dev.printline(filename, linenumber) '''output:''' stores the contents of the given line in temp") Tag: Visual edit
  • 23:57, 3 October 2024 Shorun talk contribs deleted page Api/dev.replaceline() (content was: "this function is part of the dev. api and used to replace a line in a file with another value it takes a filename(absolute path), input and output variable. '''usage:''' dev.replaceline(filename, input, output) '''output:''' replaces the line containing "input" with the line containing "output" in filename.", and the only contributor was "Shorun" (talk))
  • 23:57, 3 October 2024 Shorun talk contribs deleted page Api/dev.removestring() (content was: "his function is part of the dev. api and used to remove a string from a file it takes as input a filename (absolute path) and a string to look for the string has to be an exact copy of the full line. '''usage:''' dev.removestring(filename, string) '''output:''' removes the line containing string from filename", and the only contributor was "Shorun" (talk))
  • 23:57, 3 October 2024 Shorun talk contribs deleted page Api/dev.removeline() (content was: "this function is part of the dev. api and used to remove a specific line from a file it takes a filename (absolute path) and line number as input and then removes that line. '''usage:''' dev.removeline(filename, linenumber) '''output:''' removes the number linenumber from the file specified, returns false if file is not found, true if it was.", and the only contributor was "Shorun" (talk))
  • 23:57, 3 October 2024 Shorun talk contribs deleted page Api/dev.printline() (content was: "his function is part of the dev. api and used to print a specific line of a file '''usage:''' local temp = dev.printline(filename, linenumber) '''output:''' stores the contents of the given line in temp", and the only contributor was "Shorun" (talk))
  • 23:56, 3 October 2024 Shorun talk contribs deleted page Api/dev.findfile() (content was: "this function is part of the minux. api and used to find a string in files or folder names '''usage:''' temp = dev.findfile(searchstring) '''output:''' runs minux.lsr() to recursively list /, this is stored in /temp/ls/files.ls, the table outputed to "temp" holds the line numbers of this file corresponding to the searchstring", and the only contributor was "Shorun" (talk))
  • 23:56, 3 October 2024 Shorun talk contribs deleted page Api/dev.findline() (content was: "this function is part of the minux. api and used to see if a specific string is present in a file '''usage:''' local temp = findline(filename,searchstring) '''output:''' if "searchstring" is found in the file, outputs true otherwise outputs false", and the only contributor was "Shorun" (talk))
  • 23:56, 3 October 2024 Shorun talk contribs deleted page Api/dev.countline() (content was: "this function is part of the minux. api and used to count the amount of lines a file has. '''usage:''' local temp = dev.countline(filename) '''output:''' the number of lines the files contains.", and the only contributor was "Shorun" (talk))
  • 23:56, 3 October 2024 Shorun talk contribs created page Api/minux.replaceline() (Created page with "this function is part of the minux. api and used to replace a line in a file with another value it takes a filename(absolute path), input and output variable. '''usage:''' dev.replaceline(filename, input, output) '''output:''' replaces the line containing "input" with the line containing "output" in filename.") Tag: Visual edit
  • 23:55, 3 October 2024 Shorun talk contribs created page Api/minux.removestring() (Created page with "his function is part of the minux. api and used to remove a string from a file it takes as input a filename (absolute path) and a string to look for the string has to be an exact copy of the full line. '''usage:''' dev.removestring(filename, string) '''output:''' removes the line containing string from filename") Tag: Visual edit
  • 23:54, 3 October 2024 Shorun talk contribs created page Api/minux.removeline() (Created page with "this function is part of the minux. api and used to remove a specific line from a file it takes a filename (absolute path) and line number as input and then removes that line. '''usage:''' dev.removeline(filename, linenumber) '''output:''' removes the number linenumber from the file specified, returns false if file is not found, true if it was.") Tag: Visual edit
  • 23:54, 3 October 2024 Shorun talk contribs created page Api/minux.printline (Created page with "his function is part of the minux. api and used to print a specific line of a file '''usage:''' local temp = dev.printline(filename, linenumber) '''output:''' stores the contents of the given line in temp") Tag: Visual edit
  • 23:53, 3 October 2024 Shorun talk contribs created page Api/minux.findfile() (Created page with "this function is part of the minux. api and used to find a string in files or folder names '''usage:''' temp = dev.findfile(searchstring) '''output:''' runs minux.lsr() to recursively list /, this is stored in /temp/ls/files.ls, the table outputed to "temp" holds the line numbers of this file corresponding to the searchstring") Tag: Visual edit
(newest | oldest) View (newer 50 | ) (20 | 50 | 100 | 250 | 500)