LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bedrock Linux
User Name
Password
Bedrock Linux This forum is for the discussion of Bedrock Linux.

Notices


Reply
  Search this Thread
Old 08-11-2019, 03:52 PM   #1
marcin-
LQ Newbie
 
Registered: Aug 2019
Posts: 17

Rep: Reputation: Disabled
brl fetch solus - fix issue


I noticed that brl fetch solus fails due to unresolved dependency.
After this update util-linux needs python3 which is not a part of system.base component and it breaks eopkg install -c system.base. I fixed this issue modifying /bedrock/share/brl-fetch/distros/solus file.
from
Code:
	chroot "${bootstrap_dir:-}" eopkg -y -D/target-root install -c system.base
to
Code:
	chroot "${bootstrap_dir:-}" eopkg -y -D/target-root install -c system.base --ignore-dep
        # python3 is required dependency for util-linux
	chroot "${bootstrap_dir:-}" eopkg -y -D/target-root install python3
 
Old 08-12-2019, 03:08 AM   #2
ParadigmComplex
Bedrock Linux Founder
 
Registered: Feb 2016
Distribution: Bedrock Linux
Posts: 179

Rep: Reputation: Disabled
Thanks! I'll see about including this in an upcoming point update.
 
Old 08-24-2019, 10:59 AM   #3
marcin-
LQ Newbie
 
Registered: Aug 2019
Posts: 17

Original Poster
Rep: Reputation: Disabled
I noticed another issue for brl fetch solus. It occurred for hijacked void and artix linux.

Quote:
[11/17 ( 64%)] Running bootstrap software
dbus[25867]: Unknown username "systemd-timesync" in message bus configuration file
dbus[25867]: Unknown username "systemd-resolve" in message bus configuration file
dbus-daemon[25867]: Failed to start message bus: Could not get UID and GID for username "messagebus"
ERROR: Unexpected error occurred.
after short research I found solus passwd file and added the appropriate group and user.

Code:
# groupadd -g 18 messagebus
# useradd -c 'D-Bus Message Daemon' -u 18 -g messagebus -d '/var/run/dbus' -s '/bin/false' messagebus
brl fetch solus works fine.

Quote:
* Successfully fetched a new solus stratum with name solus
Seems "systemd-timesync" and "systemd-resolve" are needed to avoid "Unknown username ... in message bus configuration file"
 
Old 08-24-2019, 11:34 AM   #4
ParadigmComplex
Bedrock Linux Founder
 
Registered: Feb 2016
Distribution: Bedrock Linux
Posts: 179

Rep: Reputation: Disabled
I've applied your initial fix in 0.7.7beta1, which you can try with https://bedrocklinux.org/0.7/beta-channel.html

If you find the time, please do test it and confirm it resolves the original issue. Thanks again for the fix!

I'll look into this new item and either add it to 0.7.7 before it leaves beta or queue it up for 0.7.8.
 
Old 08-24-2019, 12:06 PM   #5
marcin-
LQ Newbie
 
Registered: Aug 2019
Posts: 17

Original Poster
Rep: Reputation: Disabled
I can confirm that original issue gone, checked today with 0.7.7beta1.

I have to say I like bedrock linux and I follow commits on github recently.
 
Old 08-24-2019, 12:30 PM   #6
ParadigmComplex
Bedrock Linux Founder
 
Registered: Feb 2016
Distribution: Bedrock Linux
Posts: 179

Rep: Reputation: Disabled
Happy to hear it
 
Old 08-29-2019, 08:54 AM   #7
marcin-
LQ Newbie
 
Registered: Aug 2019
Posts: 17

Original Poster
Rep: Reputation: Disabled
I tested latest improvements for src/slash-bedrock today.
brl fetch solus works fine. dbus-daemon problem gone.
 
Old 08-29-2019, 11:24 AM   #8
ParadigmComplex
Bedrock Linux Founder
 
Registered: Feb 2016
Distribution: Bedrock Linux
Posts: 179

Rep: Reputation: Disabled
The latest release - 0.7.7 - includes your python fix but, as far as I recall, not your dbus fix.

By latest improvements do you mean the master branch? I did include the dbus fix there, but didn't want to get your attention to fix it until I pushed a beta release with it. If that's what you mean, awesome
 
Old 08-29-2019, 02:53 PM   #9
marcin-
LQ Newbie
 
Registered: Aug 2019
Posts: 17

Original Poster
Rep: Reputation: Disabled
Yes, I used the master branch.
I tried interrupt fetching bootstrap packages due to I wanted to check caching support. Seems it works as well. I had only run brl remove solus before second brl fetch solus.
Do you think about checking if brl fetch is executed for resume? (to avoid run brl remove when something went wrong at the first attempt)
 
Old 08-29-2019, 03:45 PM   #10
ParadigmComplex
Bedrock Linux Founder
 
Registered: Feb 2016
Distribution: Bedrock Linux
Posts: 179

Rep: Reputation: Disabled
Quote:
Originally Posted by marcin- View Post
Yes, I used the master branch.
I tried interrupt fetching bootstrap packages due to I wanted to check caching support. Seems it works as well.
Excellent!

Quote:
Originally Posted by marcin- View Post
I had only run brl remove solus before second brl fetch solus.
Do you think about checking if brl fetch is executed for resume? (to avoid run brl remove when something went wrong at the first attempt)
If `brl fetch` detects an error, it will `brl remove` the partially fetched stratum itself. Try cutting giving it an obviously bad mirror, cutting off your internet connection while it's running, or killing one of its sub-processes such as a wget or bootstrap tool like debootstrap while it's running. I could have it do this for ctrl-c/SIGINT, but it seems safer to stop immediately just in case there's a bug in the clean up code the user is attempting to stop.

Resuming an interrupted fetch is difficult, because:
  • If the interruption lasts a non-trivial amount of time, details like the packages in the remote repository may change. In these cases we'd have to back out and restart anyways with new packages anyways.
  • A lot of `brl fetch`'s code is actually running some bootstrap tool by the fetched stratum where we don't have enough control to add in logic to resume.

Given the new caching feature, the need to resume should be greatly diminished, as it should be able to re-run the initial steps with cached content relatively quickly. The main non-cached steps are verifying the cached files are current - something we'd have to do if resuming as well - and applying the cached data.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
LXer: Solus 3 Released Here Is What's New in Solus 3 LXer Syndicated Linux News 0 08-19-2017 07:56 PM
mplayer fetch subtitles option: --fetch-subs frenchn00b Linux - General 1 11-09-2009 11:21 PM
Please help to install BRL-CAD. Tommi Linux - Software 2 05-20-2009 01:54 AM
Program (BRL-CAD) causing garbled screen under X11 7.2 klauswunderlich Linux - Software 4 07-29-2008 05:05 AM
Any BRL-CAD gurus here? Tommi Linux - General 7 06-15-2003 02:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Bedrock Linux

All times are GMT -5. The time now is 06:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration