Difference between revisions of "Linux Notes"

From OpenEMR Project Wiki
Line 33: Line 33:


<br><br>
<br><br>
==SSH Server==
====Configure====
<pre>
sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default
sudo chmod a-w sshd_config.default
sudo nano /etc/ssh/sshd_config
[Change:  PasswordAuthentication yes]
sudo restart ssh
</pre>
==Miscellaneous Commands==
==Miscellaneous Commands==
  sudo reboot
  sudo reboot
<br><br>
<br><br>

Revision as of 13:52, 24 May 2014

Text Editors - Command Line

vim
nano
  • Derived from pico, more features than pico, easier to use than vim.
emacs




Mail Readers - Command Line

mail
mutt



Viewing Files

less [FILENAME]



FTP Servers

vsftp

proftpd



SSH Server

Configure

sudo cp /etc/ssh/sshd_config /etc/ssh/sshd_config.default
sudo chmod a-w sshd_config.default
sudo nano /etc/ssh/sshd_config
[Change:  PasswordAuthentication yes]
sudo restart ssh

Miscellaneous Commands

sudo reboot