Hey guys and girls,
I recently received my WD PiDrive and wanted to install Raspbian on it using BerryBoot. All works out fine, though unfortunately when I try to launch raspi-config in the terminal it shows this in a blue terminal-window-kinda-thing:
"The boot partition is not mounted - cannot configure. Note that raspi-config is intended for use on Raspbian only and cannot be guaranteed to work on other operating systems." - At the bottom there's an OK button.
When trying to open it in the graphical interface which these days opens on first boot, it shows a pop up window like this:
"The Raspberry Pi Configuration application can only modify a standard configuration.
Your configuration appears to have been modified by other tools, and so this application cannot be used on your system.
In order to use this application, you need to have the latest firmware installed, Device Tree enabled, the default "pi" user set up and the lightdm application installed." - OK button.
What's wrong there? It used to work this way. I already re-installed, too. It's the newest Raspbian Jessie.
Thanks!
Lexenstar
Re: Raspi-config doesn't start on fresh install with BerryBo
Hey,
got it fixed.
For future reference:
I realized that /boot was empty, so I mounted the SD card into there using

got it fixed.
For future reference:
I realized that /boot was empty, so I mounted the SD card into there using
Code: Select all
sudo mount /dev/mmcblk0p1 /boot

-
- Posts: 2
- Joined: Wed Jul 27, 2016 3:08 pm
Re: Raspi-config doesn't start on fresh install with BerryBo
That's dev/mmcblk0p1 /boot
"L" not "1" : But you solved my problem, thanks so much!
"L" not "1" : But you solved my problem, thanks so much!
-
- Posts: 2
- Joined: Wed Jul 27, 2016 3:08 pm
Re: Raspi-config doesn't start on fresh install with BerryBo
Sorry, that was my fault; the lowercase "L" in my terminal is noticeably different from the code above. Looking closely, I can see that your mount line is correct. I'm new around here!
Re: Raspi-config doesn't start on fresh install with BerryBo
Hey
how do you make /boot mounted on startup ?
thanks
how do you make /boot mounted on startup ?
thanks
-
- Posts: 2
- Joined: Sun Aug 07, 2016 5:29 pm
Re: Raspi-config doesn't start on fresh install with BerryBo
Having the same issue, but when I try to copy that file that dir it says it doesn't exist.
Any takers?
Any takers?
-
- Posts: 2
- Joined: Sun Aug 07, 2016 5:29 pm
Re: Raspi-config doesn't start on fresh install with BerryBo
My boot folder also isn't empty, tho...
-
- Posts: 1
- Joined: Mon Mar 13, 2017 6:30 pm
Re: Raspi-config doesn't start on fresh install with BerryBo
Hi gang,
This code seems to work, and it does make Raspi-Config available in that session.
However, if I reboot, it all gets disconfigured and I have to run the code again in terminal, this time with an error stating that boot partition already exists.
Any idea on how to make it permanent and not have to do this after every poweroff or reboot, please?
Thanks.
This code seems to work, and it does make Raspi-Config available in that session.
However, if I reboot, it all gets disconfigured and I have to run the code again in terminal, this time with an error stating that boot partition already exists.
Any idea on how to make it permanent and not have to do this after every poweroff or reboot, please?
Thanks.
Re: Raspi-config doesn't start on fresh install with BerryBo
Hi all. Same question as superforceraspi just above... So does anyone know at this point how you can make this cure permanent? Or a way to automate for not having to apply it manually each time at least... Thank you very much in advance.
Re: Raspi-config doesn't start on fresh install with BerryBo
Hi again,
For the record, and just in case someone is interested, I get an official response about this issue which, unfortunately, confirmed this is indeed a known limitation of BerryBoot, so there is no reason to continue looking for better solutions, for now at least. Of course, I'd still love it could be solved at any point, but I don't know if that will happen or even if will be possible at all... Well, more info here (concretely in reply): http://berryboot.alexgoldcheidt.com/images/#comment-303
So that's all, and I hope it helps. Greetings.
For the record, and just in case someone is interested, I get an official response about this issue which, unfortunately, confirmed this is indeed a known limitation of BerryBoot, so there is no reason to continue looking for better solutions, for now at least. Of course, I'd still love it could be solved at any point, but I don't know if that will happen or even if will be possible at all... Well, more info here (concretely in reply): http://berryboot.alexgoldcheidt.com/images/#comment-303
So that's all, and I hope it helps. Greetings.
Re: Raspi-config doesn't start on fresh install with BerryBo
sudo blkidRamon0 wrote:Hi all. Same question as superforceraspi just above... So does anyone know at this point how you can make this cure permanent? Or a way to automate for not having to apply it manually each time at least... Thank you very much in advance.
Copy the UUID for /dev/mmcblk0p1
sudo leafpad /etc/fstab
Add this line:
UUID=paste_from_above /boot vfat defaults 0 2
Save the file
Now it will stick after reboot
Re: Raspi-config doesn't start on fresh install with BerryBo
AWESOME! I couldn't test it till today, but it worked like a charm! And at the very first tryultraduck wrote:Now it will stick after reboot

So thank you! Very much indeed

-
- Posts: 40
- Joined: Thu Oct 01, 2015 9:37 am
Re: Raspi-config doesn't start on fresh install with BerryBoot
Hi all.
Sorry to reload an old topic.
I've installed Raspbian over Berryboot. Everything went ok but raspi-config isn't working properly.
The solutions I've searched for says to mount /dev/mmcblk0p1 to boot. But that is alrready mounted permanently trough fstab file.
Could you help me, please?
Thanks in advance.
Sorry to reload an old topic.
I've installed Raspbian over Berryboot. Everything went ok but raspi-config isn't working properly.
The solutions I've searched for says to mount /dev/mmcblk0p1 to boot. But that is alrready mounted permanently trough fstab file.
Could you help me, please?
Thanks in advance.
GOD BLESS THE BLUES!!
-
- Posts: 40
- Joined: Thu Oct 01, 2015 9:37 am
Re: Raspi-config doesn't start on fresh install with BerryBoot
For more information, a 'sudo blkid' shows:
pi@RasPi3:~ $ sudo blkid
pi@RasPi3:~ $ sudo blkid
Code: Select all
/dev/loop0: TYPE="squashfs"
/dev/mmcblk0: PTTYPE="dos"
/dev/mmcblk0p1: SEC_TYPE="msdos" LABEL="boot" UUID="0A35-xxxx" TYPE="vfat"
/dev/mmcblk0p2: LABEL="berryboot" UUID="a536f799-0909-4790-96f9-xxxxxxxxxxxx" TYPE="ext4"
/dev/sda1: LABEL="My Book" UUID="XXXXXXXXXXXXXXXX" TYPE="ntfs"
GOD BLESS THE BLUES!!