Bananian Changes/Updates

From KlavoWiki
Revision as of 10:12, 14 June 2016 by David (talk | contribs) (Created page with "When I install Bananian on a Banana Pi this is what I do: = vim = Install vim as default editor <pre> apt-get -y install vim </pre> = Crontab editor = Change crontab editor...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

When I install Bananian on a Banana Pi this is what I do:

vim

Install vim as default editor

apt-get -y install vim

Crontab editor

Change crontab editor to be vim

update-alternatives --config editor

Shell

Change Shell from zsh to bash

chsh -s /bin/bash

Updates

Perform OS Updates Raspbian Debian Software Updates

Update Kernel

Install the latest kernel

apt-get -y install linux-image-4.4-bananian

Remove swapfile

swapoff /swapfile1
vi /etc/fstab

prefix the line with a hash '#'

/swapfile1 swap swap defaults 0 0

delete swapfile

rm -f /swapfile1