Man Pages
RSYNC - Man Page
Submitted by btilma on Sat, 01/24/2009 - 15:01.
Section: (1)
Updated: 29 Jun 2008
Updated: 29 Jun 2008
NAME
rsync --- a fast, versatile, remote (and local) file-copying toolSYNOPSIS
Local: rsync [OPTION...] SRC... [DEST]
Access via remote shell:
Pull: rsync [OPTION...] [USER@]HOST:SRC... [DEST]
Push: rsync [OPTION...] SRC... [USER@]HOST:DEST
Access via rsync daemon:
Pull: rsync [OPTION...] [USER@]HOST::SRC... [DEST]
rsync [OPTION...] rsync://[USER@]HOST[:PORT]/SRC... [DEST]
Push: rsync [OPTION...] SRC...- Read more
- 48 reads
X11VNC - Man Page
Submitted by btilma on Tue, 01/06/2009 - 11:08.
Section: User Commands (1)
Updated: October 2007
Index
version: 0.9.3, lastmod: 2007-09-30
Updated: October 2007
Index
NAME
x11vnc - allow VNC connections to real X11 displaysversion: 0.9.3, lastmod: 2007-09-30
SYNOPSIS
x11vnc [OPTION]...DESCRIPTION
Typical usage is:
- Run this command in a shell on the remote machine "far-host" with X session you wish to view:
- x11vnc
- Read more
- 266 reads
DBI - Man Page
Submitted by btilma on Thu, 01/01/2009 - 12:58.
Section: User Contributed Perl Documentation (3pm)
Updated: 2008-06-16
Index
Updated: 2008-06-16
Index
NAME
DBI - Database independent interface for PerlSYNOPSIS
use DBI; @driver_names = DBI->available_drivers; %drivers = DBI->installed_drivers; @data_sources = DBI->data_sources($driver_name, \%attr); $dbh = DBI->connect($data_source, $username, $auth, \%attr); $rv = $dbh->do($statement); $rv = $dbh->do($statement, \%attr); $rv = $dbh->do(
- Read more
- 46 reads
MOUNT - Man Page
Submitted by btilma on Wed, 12/31/2008 - 02:18.
Section: Linux Programmer's Manual (8)
Updated: 2004-12-16
Index
Updated: 2004-12-16
Index
NAME
mount - mount a file systemSYNOPSIS
mount [-lhV]
mount -a [-fFnrsvw] [-t vfstype] [-O optlist]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir
DESCRIPTION
All files accessible in a Unix system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out over several devices. The mount command serves to attach the file system found on some device to the big file tree. Conversely, the umount(8) command will detach it again.- Read more
- 48 reads
SSH_CONFIG - Man Page
Submitted by btilma on Wed, 12/31/2008 - 02:01.
Section: File Formats (5)
Index
BSD mandoc
/etc/ssh/ssh_config
Index
BSD mandoc
NAME
ssh_config - OpenSSH SSH client configuration filesSYNOPSIS
~/.ssh/config/etc/ssh/ssh_config
DESCRIPTION
ssh(1) obtains configuration data from the following sources in the following order:
- command-line options
- user's configuration file (~/.ssh/config )
- system-wide
- Read more
- 80 reads
SSHFS - Man Page
Submitted by btilma on Wed, 12/31/2008 - 01:56.
Section: User Commands (1)
Updated: April 2008
Index
Updated: April 2008
Index
NAME
SSHFS - filesystem client based on sshSYNOPSIS
mounting
- sshfs [user@]host:[dir] mountpoint [options]
unmounting
- fusermount -u mountpoint
DESCRIPTION
SSHFS (Secure SHell FileSystem) is a file system for Linux (and other operating systems with a FUSE implementation, such as Mac OS X or FreeBSD) capable of operating on files on a remote computer using just a secure shell login on the remote computer. On the local computer where the SSHFS is mounted, the implementation makes use of the FUSE (Filesystem in Userspace) kernel module. The practical effect of this is that the end user can seamlessly interact with remote files being securely served over SSH just as if they were local files on his/her computer. On the remote computer the SFTP subsystem of SSH is used.- Read more
- 143 reads
SSH - Man Page
Submitted by btilma on Wed, 12/31/2008 - 01:52.
Section: User Commands (1)
Index
BSD mandoc
Index
BSD mandoc
NAME
ssh - OpenSSH SSH client (remote login program)SYNOPSIS
ssh [-1246AaCfgKkMNnqsTtVvXxY ] [-b bind_address ] [-c cipher_spec ] [-D [bind_address : ] port ] [-e escape_char ] [-F configfile ] -words [-i identity_file ] [-L [bind_address : ] port : host : hostport ] -words [-l login_name ] [-m mac_spec ] [-O ctl_cmd ] [-o option ] [-p port ] [-R [bind_address : ] port : host : hostport ] [-S ctl_path ] -words [-w local_tun [: remote_tun ] ] [user @ hostname ] [command ]DESCRIPTION
ssh (SSH client) is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted communications between two untrusted hosts over an insecure network. X11 connections and arbitrary TCP ports can also be forwarded over the secure channel.
- Read more
- 56 reads
SED - Man Page
Submitted by btilma on Tue, 12/30/2008 - 01:27.
Section: User Commands (1)
Updated: February 2006
Index
Updated: February 2006
Index
NAME
sed - stream editor for filtering and transforming textSYNOPSIS
sed [OPTION]...- Read more
- 50 reads
PERLRE - Man Page
Submitted by btilma on Tue, 12/30/2008 - 01:25.
Section: Perl Programmers Reference Guide (1)
Updated: 2007-12-18
Index
Updated: 2007-12-18
Index
NAME
perlre - Perl regular expressionsDESCRIPTION
This page describes the syntax of regular expressions in Perl.If you haven't used regular expressions before, a quick-start introduction is available in perlrequick, and a longer tutorial introduction is available in perlretut.
For reference on how regular expressions are used in matching operations, plus various examples of the same, se
- Read more
- 45 reads
AWK - Man Page
Submitted by btilma on Tue, 12/30/2008 - 01:22.
Section: Utility Commands (1)
Updated: Oct 19 2007
Index
gawk [ POSIX or GNU style options ] [ -- ] program-text file ...
Updated: Oct 19 2007
Index
NAME
gawk - pattern scanning and processing languageSYNOPSIS
gawk [ POSIX or GNU style options ] -f program-file [ -- ] file ...gawk [ POSIX or GNU style options ] [ -- ] program-text file ...
pgawk
[ POSIX or GNU style options ]
-f
program-file
[
--
] file ...
pgawk
[ POSIX or GNU style options ]
[
--
]
program-text
file ...
- Read more
- 48 reads


