💾 Archived View for bbs.archaicbinary.net › commanddb captured on 2021-12-05 at 23:47:19. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-11-30)

-=-=-=-=-=-=-

Archaic Binary BBS Capsule

About

Archaic Binary is a (mostly) command line interpreted bulletin board system providing a legacy interface for some useful APIs, Utilities, Files, Message Bases (FTN Style) and access to ANSI/Text Door Games.

Connect

Use your ANSI Terminal and connect to bbs.archaicbinary.net!

Telnet

SSH (SyncTERM is Best)

Gopher (This site in Gopherspace)

HTTPS Website

SyncTERM (Windows Installer)

SyncTERM (Windows Portable)

SyncTERM Website/Other Builds

Command Database

Windows

arp

$ Generic // list IP address to the hardware address

assoc

$ Generic // Fix or Show File Associations

attrib

$ Generic // Change File Attributes

bcdboot

$ Generic // Used to create and repair a system partition

bcdedit

$ Generic // Used to manage boot configuration data

bitsadmin

$ Generic // Used to manage the Background Intelligent Transfer Service

cacls

$ Generic // Used to change permissions of files

chkdsk X: /f /r /x

$ Generic // Check Disks for Errors

chkntfs

$ Generic // Used to check the NTFS file system

compact

$ Generic // Compress files and folders on an NTFS partition

deltree

$ Generic // Used to delete a folder and its sub-folders

dir /w

$ Generic // List Files (Wide Format)

extract

$ Generic // Uncompress one or more Windows cabinet file(s)

fc

$ Generic // File Compare

Get-WmiObject -Class Win32_Product | Select-Object -Property Name | Sort-Objec

$ PowerShell // Installed Programs

gpupdate /force

$ Generic // Group Policy Update

hostname

$ Generic // Used to display host name of the computer

ipconfig /all

$ Generic // View All TCPIP Information

ipconfig /displaydns

$ Generic // View Local DNS Cache

ipconfig /flushdns

$ Generic // Flush DNS Cache

mklink

$ Generic // Used to create symbolic link to a directory

mountvol

$ Generic // Create, list, or delete a volume mount point

msiexec

$ Generic // Install, modify, configure using Windows Installer

mstsc

$ Generic // Create a remote desktop connection

net use \\server\ipc$

$ Generic // Authenticate Sessions on Remote Machine

net use X: \\server\share

$ Generic // Show Network Shares

net, net stop service, net start service, net use X: \\srv\share

$ Generic // Network Server/Client Commands

netsh int ip reset c:\tcpreset.txt

$ Generic // Rebuild TCP Stack

netsh wlan delete profile name=* i=*

$ Generic // Erase All Wireless Profiles

netsh WLAN show interfaces

$ Generic // Show wireless connection signal strength for connected network

netsh wlan show profiles

$ Generic // Show Wireless Profiles

netstat

$ Generic // Show Network Connections Activity

nslookup

$ Generic // Query DNS

openfiles

$ Generic // Queries or displays open files

ping

$ Generic // Ping Network Device

powercfg

$ Generic // Power Configuration

schtasks

$ Generic // Schedule Tasks

sfc /scannow

$ Generic // System File Checker

shutdown /r /f /t 0

$ Generic // Reboot

shutdown /s /f /t 0

$ Generic // Force Shutdown

shutdown, shutdown -i

$ Generic // Shutdown/Reboot Machine

subst z: t:\user\betty\forms

$ Generic // Associates a path with a drive letter

systeminfo

$ Generic // System Information

taskkill /IM program.exe

$ Generic // Kill a Task

tasklist

$ Generic // Tasks List

tracert

$ Generic // Run a Trace Route

vssadmin list shadowstorage

$ Generic // List shadow copies and storage allocation for System Restore

vssadmin list shadowstorage

$ Generic // Check System Restore status and allocation levels

w32tm

$ Generic // Access Windows Time Service Utility

where

$ Generic // Find and display file(s) in the current directory

wmic cpu get loadpercentage

$ Generic // Get CPU Load

wmic desktopmonitor get screenheight, screenwidth

$ Generic // Get Screen Resolution

Linux

bg

$ Generic // Lists stopped or background jobs

cal

$ Generic // show this month's calendar

cd ..

$ Generic // Go up a directory

cd DIR

$ Generic // Change directory to DIR

chmod -R 600 FOLDER

$ Generic // Recursively chmod FOLDER to 600

chmod 775 FILE

$ Generic // Chand mode of FILE to 775

chown USER GROUP FILE

$ Generic // Change FILE owner to USER and group to GROUP

cmd < file

$ Generic // Input of cmd from file

date

$ Generic // show the current date and time

df

$ Generic // show disk usage

dig -x HOST

$ Generic // reverse lookup HOST

dig DOMAIN

$ Generic // get DNS infomation for DOMAIN

du

$ Generic // show directory space usage

fg

$ Generic // Brings the most recent job to foreground

fg N

$ Generic // brings job N to the foreground

finger USER

$ Generic // display information about USER

free

$ Generic // show memory and swap usage

gzip -d FILE.GZ

$ Generic // decompresses FILE.GZ back to FILE

gzip FILE

$ Generic // compresses FILE and renames it to file.gz

kill PID

$ Generic // Kill process with id PID

killall NAME

$ Generic // Kill all prcesses with names beginning with NAME

ls

$ Generic // LS List Directory

ls -ltra

$ Generic // List Files (Last Modified Time)

man

$ Generic // Brings up the manual for a specified program

man woman

$ Generic // Funny man joke

mkdir DIR

$ Generic // Make directory DIR

ping host and output results

$ Generic // ping HOST

pkill NAME

$ Generic // Kill process with name NAME

ps

$ Generic // Show snapshot of processes

pwd

$ Generic // Show current directory

rm -rf /home/username/folder

$ Generic // Remove Directory and All Files (Recursive)

ssh -p PORT USER@HOST

$ Generic // connect to HOST on PORT as USER

ssh USER@HOST

$ Generic // Connect to HOST as USER

tar cf FILE.TAR FILES

$ Generic // create a tar named FILE.TAR containing FILES

tar cjf FILE.TAR.BZ2

$ Generic // create a tar with Bzip2 compression

tar czf FILE.TAR.GZ FILES

$ Generic // create a tar with Gzip compression

tar xf FILE.TAR

$ Generic // extract the files from FILE.TAR

tar xjf FILE.TAR.BZ2

$ Generic // extract a tar using Bzip2

tar xzf FILE.TAR.GZ

$ Generic // extract a tar using Gzip

top

$ Generic // Show real time processes

uname -a

$ Generic // show kernel infomation

uptime

$ Generic // show current uptime

w

$ Generic // display who is online

wget -c FILE

$ Generic // continue a stopped download

wget FILE

$ Generic // download FILE

whereis APP

$ Generic // show possible locations of APP

which APP

$ Generic // show shich APP will be run by default

whoami

$ Generic // who you are logged in as

whois DOMAIN

$ Generic // get whois information for DOMAIN

Apple Macintosh