Pop out the SD card and then replace it (a couple of times). Sometimes just reseating the card will get it to boot-up. I have an RPi 2B that routinely refuses to boot (and there is nothing wrong with it!). I just try again (reseat the card) and try again... and then it will boot-up.lbyrnes86 wrote:I recently installed raspbian jessie to my raspberry pi 2 and I can not get it to update or do anything else. I used the same SD card on an older raspberry pi model B and it worked fine. I attached a screen shot of the message I receive. I am wondering if there is an issue with the raspberry pi itself not the software.
Looks to me like he booted, and is using terminalMarkHaysHarris777 wrote:Pop out the SD card and then replace it (a couple of times). Sometimes just reseating the card will get it to boot-up. I have an RPi 2B that routinely refuses to boot (and there is nothing wrong with it!). I just try again (reseat the card) and try again... and then it will boot-up.
The push-push SD slot of the 2B is a problema... the newer push-pull slot of the 3B is much better.
Rive wrote: Looks to me like he booted, and is using terminal
Well, since the image he attached clearly shows the Jessie GUI taskbar with an open terminal window... one might assume that he managed to boot up... Perhaps I am mistaken though.MarkHaysHarris777 wrote:Rive wrote: Looks to me like he booted, and is using terminal
... yeah, actually, he stated he ¨can´t get it to do anything else¨ which can mean, well, what?
Does it boot? What does ¨can´t get it to do anything else¨ mean?

No, you're not.Rive wrote:Well, since the image he attached clearly shows the Jessie GUI taskbar with an open terminal window... one might assume that he managed to boot up... right? Perhaps I am mistaken though.
Maybe he is trying for root access?B.Goode wrote:Worth checking on disk space with df -h (You don't want to see 100% in the first couple of lines.)
But actually a network issue is more likely.
The failure to run startx is because you are already running in an x-windowed environment - you cannot start it again from within itself. [Failure to do 'startx' from the boot-time shell prompt is indeed often because of space starvation, but on reflection you have already booted into the GUI, so that is not the case here.]
Code: Select all
sudo su
startxNot a good idea! DON'T do that!Rive wrote: Maybe he is trying for root access?
Code: Select all
sudo su startx
Code: Select all
sudo su
startxThe versions of Raspbian installed by NOOBS and by direct image are for practical purposes the same.Rive wrote:Installing from NOOBS, you may later discover, has...disadvantages.
So, depending on what you plan to do, you might want to remove noobs, and install rasbian jessie directly using something like diskimager. (and then use diskimager to create ("read") backup images as needed for recovery later on)
Download Jessie:
https://www.raspberrypi.org/downloads/raspbian/
Download DiskImager:
https://sourceforge.net/projects/win32d ... t/download
Running startx as the root user will probably make it difficult or impossible to subsequently run the Xwindows GUI as a 'normal' user such as 'pi'. I strongly advise against it.If you want root user access:Code: Select all
sudo su startx
You may need to first uncheck "login as user pi" in raspi-config via menu/preferences (I dunno for sure though)..