Friday, August 22, 2014

Enable Root Login Over SSH in FreeBSD 10.0

By default, we cannot login to FreeBSD over ssh. So, we must enable it from openSSH configuration.

Open /etc/ssh/sshd_config with your 'ee' text editor
ee /etc/ssh/sshd_config
Find this
#PermitRootLogin no
Change to
PermitRootLogin yes
Press escape, and then choose yes for save confirmation.

Finally, restart your ssh daemon
 service sshd restart
 ...and done. You can login with root remotely over ssh.

Source:
http://blog.bobbyallen.me/2011/07/22/how-to-enable-root-login-over-ssh-on-freebsd-8-2/

Thursday, August 7, 2014

Installing Flash Player Ubuntu In Single Step

Close all running Firefox

Open your terminal

Type "sudo apt-get install flashplugin-nonfree"

Now flash player should be working.

Source:
http://www.cyberciti.biz/faq/ubuntu-linux-how-to-install-flash-player-for-firefox/