Bananian Changes/Updates: Difference between revisions

From KlavoWiki
Jump to navigationJump to search
(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...")
 
No edit summary
 
Line 19: Line 19:
chsh -s /bin/bash
chsh -s /bin/bash
</pre>
</pre>
= Updates =
Perform OS Updates [[Raspbian_Debian_Software_Updates|Raspbian Debian Software Updates]]


= Update Kernel =
= Update Kernel =
Line 28: Line 25:
apt-get -y install linux-image-4.4-bananian
apt-get -y install linux-image-4.4-bananian
</pre>
</pre>
= Updates =
Perform OS Updates [[Raspbian_Debian_Software_Updates|Raspbian Debian Software Updates]]


= Remove swapfile =
= Remove swapfile =

Latest revision as of 10:13, 14 June 2016

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

Update Kernel

Install the latest kernel

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

Updates

Perform OS Updates Raspbian Debian Software Updates

Remove swapfile

swapoff /swapfile1
vi /etc/fstab

prefix the line with a hash '#'

/swapfile1 swap swap defaults 0 0

delete swapfile

rm -f /swapfile1