You are not logged in.
Pages: 1
The reason I ask is: I was going to try the Devuan-based version of Peppermint, but Brave won't install in it. I don't have the error message to quote, but it indicated that the problem wasn't the installed browser (obviously not, since I didn't get to install it) but an issue with the relevant repository. It had to be specific to Peppermint, because my Brave browser installs and upgrades perfectly well in MX, my current distro.
Anyway, can anyone tell me whether Brave is expected to work in Devuan, before I get Devuan running on my computer?
Offline
It runs fine for me on ceres (unstable). I also have it installed on excalibur (testing), and daedalus (stable). It is installed with apt with the brave repository active. But note, I have not booted into the stable and testing install in a while so I don't know if it runs, but it installs and updates without error.
Offline
There are quite a few Brave users here but alas, not me . . .
Online
Carolina In My Mind wrote: Anyway, can anyone tell me whether Brave is expected to work in Devuan, before I get Devuan running on my computer?
Yes, I have it installed on Crowz, daedalus. Thought I would go ahead and check and see if it would. No problems.
This is from https://brave.com/linux/
sudo apt install curl
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
sudo apt update
sudo apt install brave-browser
cheers
zephyr
Last edited by zephyr (2024-07-11 03:12:48)
CROWZ
easier to light a candle, yet curse the dark instead / experience life, or simply ...merely exist / ride the serpent / molon labe / III%ers / oath keepers
Offline
Anyway, can anyone tell me whether Brave is expected to work in Devuan, before I get Devuan running on my computer?
Hello.
Just install Brave browser as flatpak. They released official flatpak images
Offline
Just install Brave browser as flatpak. They released official flatpak images
https://flathub.org/apps/com.brave.Browser
Flatpak tows far too much bloat into the system (and don't play well with doing desktop entries and the like (At least I've heard so...))
In fact Brave itself discourages from using it anyway:
https://brave.com/linux/#flatpak
Brave is available as a Flatpak package from Flathub. While it is maintained by Brave Software, it is not yet working as well as our native packages. We currently recommend that users who are able to use our official package repositories do so instead of using the Flatpak.
Doing it with .deb packages is simply better
Last edited by pl (2024-07-11 18:40:38)
Bound for better weather...
Offline
perchance.
#!/bin/sh
fetch_keyrin (){
curl -fsSLo \
/usr/share/keyrings/brave-browser-archive-keyring.gpg \
https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
}
add_sources () {
debsrc="deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main"
echo "$debsrc" \
| tee /etc/apt/sources.list.d/brave-browser-release.list
}
install_brave () {
apt update
apt install brave-browser -y
}
main () {
fetch_keyrin
add_sources
install_brave
}
case "$1" in
run)
main
;;
install)
if [ ! "$( id -u )" -eq 0 ]; then
main
else
pkexec sudo "$0" "run"
fi
;;
esac
the script is very dumb and the use of pkexec is if for example you want to run the script from some graphic prompt or program like a welcome center or the sort that is running unpriviledged.
it also detects if it was ran with sudo directly and skips the whole pkexec business.
Offline
I am actually running Pep Devuan, with Brave you do have to run the stuff the folks posted above but its work smooth....
Offline
Brave works fine here. The best option is to install by adding the Brave repo to sources.list and then install with apt-get.
Follow the instructions on the Brave web site. Avoid flatpak, it is bad advice. Neither are bespoke scripts necessary. Good luck, and if you have further questions, post here again. Feel free to let us know if things worked out or not.
Offline
Brave works without problems
_https://brave.com/linux/#release-channel-installation
Release Channel Installation
Debian, Ubuntu, Mintsudo apt install curl
sudo curl -fsSLo /usr/share/keyrings/brave-browser-archive-keyring.gpg https://brave-browser-apt-release.s3.brave.com/brave-browser-archive-keyring.gpg
echo "deb [signed-by=/usr/share/keyrings/brave-browser-archive-keyring.gpg] https://brave-browser-apt-release.s3.brave.com/ stable main"|sudo tee /etc/apt/sources.list.d/brave-browser-release.list
sudo apt update
sudo apt install brave-browser
Offline
Brave works fine in Daedalus (and every other distro I've tried it on). I just use the recipe on their website - you get the latest version, plus updates with all your other packages.
Offline
Thought i'd add a quickie tip:
Installed a little earlier, but when opening it gave me a message explaining keyring wasn't unlocked, and wanted a password, had to hit "cancel" to clear it and it popped up again, I canceled again and browser finally opened. But it would do this every time I opened it, found a simple solution on another forum.
Open your menu editor (I use mozo on MATE) and find your properties tab, then edit the opening command with this appended to it:
a space, then
--password-store=basic
That turned it off for me, current Daedalus.
https://sourceforge.net/projects/vuu-do/
Vuu-do GNU/Linux, minimal Devuan-based openbox systems to build on, maximal versions if you prefer your linux fully-loaded.
Please donate to support Devuan and init freedom! https://devuan.org/os/donate
Offline
Pages: 1