How can I check the installed version of raspbian?
thanks
greetings
Code: Select all
sudo apt-get update
sudo apt-get install -y lsb-release
lsb_release -sri
Debian
7.8
Code: Select all
cat /etc/issue
Raspbian GNU/Linux 7 \n \l
Code: Select all
cat /etc/debian_version
7.8
Code: Select all
sudo BRANCH=next rpi-update
It is best never to do rpi-update because it gets unstable firmware which can easily crash your Pi. BRANCH=next means to go more unstable or go to the next branch. It should never be done willy nilly.Taxicletter wrote:And what doesdo?Code: Select all
sudo BRANCH=next rpi-update
I used it because someone adviced it because the openGL driver wasn't working anymore. But what the difference between that and the normal sudo rpi-update?
(Now I do sudo apt-get update, and then the sudo apt-get upgrade, but if I understand above well, it is better to do the sudo rpi-update before the upgrade?)