Check-in [6b127c7938]
Overview
Comment:Added basic USAGE document
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 6b127c7938899b5869eab4d08810dee952d51f2d
User & Date: rkeene on 2016-09-28 15:17:24
Other Links: manifest | tags
Context
2016-09-28
15:22
Added license (MIT) check-in: 3c20b13b52 user: rkeene tags: trunk
15:17
Added basic USAGE document check-in: 6b127c7938 user: rkeene tags: trunk
2016-06-22
19:28
Post-release version increment check-in: 5a4e749414 user: rkeene tags: trunk
Changes

Added USAGE.md version [56b79e7229].



























































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
Tcl UNIX API
============

Linux only, currently.


package require tuapi 0.6

High-level Interfaces
---------------------
	::tuapi::mount
	::tuapi::umount
	::tuapi::kill
	::tuapi::killpg
	::tuapi::ifconfig
	::tuapi::modprobe
	::tuapi::scan_and_load_kernel_modules

Low-level Interfaces (Linux)
----------------------------
	::tuapi::syscall::insmod <filename> ?<args>?
	::tuapi::syscall::rmmod <module>...
	::tuapi::syscall::lsmod (not implemented)
	::tuapi::syscall::hostname ?<hostname>?
	::tuapi::syscall::domainname (not implemented)
	::tuapi::syscall::klogctl {read|clear|console_on|console_off}
	::tuapi::syscall::settimeofday <seconds> <microseconds>
	::tuapi::syscall::losetup <loopdev> <file>
	::tuapi::syscall::eject (not implemented)
	::tuapi::syscall::mount <source> <target> <fstype> <listOfFlags> ?<data>?
	::tuapi::syscall::umount <directory> ?<flags>?
	::tuapi::syscall::swapon <file>
	::tuapi::syscall::swapoff <file>
	::tuapi::syscall::mknod (not implemented)
	::tuapi::syscall::getuid (not implemented)
	::tuapi::syscall::chroot <path>
	::tuapi::syscall::pivot_root <newRoot> <putOld>
	::tuapi::syscall::kill <pid> <signal>
	::tuapi::syscall::waitpid
	::tuapi::syscall::ps (not implemented)
	::tuapi::syscall::execve <file> <args>...
	::tuapi::syscall::rlimit get {AS|CORE|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK}
	::tuapi::syscall::rlimit set {AS|CORE|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK} <value>
	::tuapi::syscall::rlimit set {AS|CORE|DATA|FSIZE|LOCKS|MEMLOCK|MSGQUEUE|NICE|NOFILE|NPROC|RSS|RTPRIO|RTTIME|SIGPENDING|STACK} soft <value> hard <value>
	::tuapi::syscall::reboot {DISABLE_CAD|ENABLE_CAD|HALT|POWEROFF|RESTART}
	::tuapi::syscall::ifconfig
	::tuapi::syscall::ifconfig <interface>
	::tuapi::syscall::ifconfig <interface> <flags>...
	::tuapi::syscall::route (not implemented)
	::tuapi::syscall::route {add|del} <destination> <netmask> ?<flags>?
	::tuapi::syscall::brctl (not implemented)
	::tuapi::syscall::brctl addbr <bridge>
	::tuapi::syscall::brctl delbr <bridge>
	::tuapi::syscall::brctl addif <bridge> <interface>
	::tuapi::syscall::brctl delif <bridge> <interface>
	::tuapi::syscall::vconfig (not implemented)
	::tuapi::syscall::stty
		Only: size, -raw, raw, -echo, echo
	::tuapi::syscall::socket_unix <path>
	::tuapi::syscall::socket_unix -server <command> <path>
	::tuapi::syscall::tsmf_start_svc <sri> <filenameToExecute> <logfile> <envList> <directoryToStartIn> <umask> <uid> <gid> <timeout>