:: Installing sshd on Linux Debian

35 sec read

:: What is ssh
Secure Shell or SSH is a network protocol that allows data to be exchanged using a secure channel between two networked devices. The two major versions of the protocol are referred to as SSH1 or SSH-1 and SSH2 or SSH-2. Used primarily on Linux and Unix based systems to access shell accounts, SSH was designed as a replacement for Telnet and other insecure remote shells, which send information, notably passwords, in plaintext, rendering them susceptible to packet analysis. The encryption used by SSH is intended to provide confidentiality and integrity of data over an unsecured network, such as the Internet. :: wikipedia

 
:: How to setup ssh server on Debian

# aptitude install openssh-server

 
:: Checking ssd

# /etc/init.d/ssh status
or
# netstat -tlupn | grep 22
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      5662/sshd
tcp6       0      0 :::22                   :::*                    LISTEN      5662/sshd

 
:: Start / Restart sshd

# /etc/init.d/ssh start
or
# /etc/init.d/ssh restart

 
:: Testing sshd

# ssh localhost
or
# ssh username@localhost

How to fix problem with the editor ‘vi’

:: git error with vi error: There was a problem with the editor 'vi'   :: how to fix the problem 0. check path...
sysadmin.id
10 sec read

Apache :: MP4 Streaming

:: How to Enable mp4 Streaming in Apache + Installing mod h624 streaming wget //h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz tar -xzf apache_mod_h264_streaming-2.2.7.tar.gz cd mod_h264_streaming-2.2.7/ ./configure --with-apxs=`which apxs2` make...
sysadmin.id
18 sec read

Apache :: Flash / FLV Streaming

:: How to Configure Apache for FLV Streaming + Installing mod_flvx wget //people.apache.org/~pquerna/modules/mod_flvx.c which apxs /usr/bin/apxs /usr/bin/apxs -cia mod_flvx.c + setup mod_flvx in http.conf...
sysadmin.id
15 sec read