Package Details: brave-nightly-bin 1.79.12-1

Git Clone URL: https://aur.archlinux.org/brave-nightly-bin.git (read-only, click to copy)
Package Base: brave-nightly-bin
Description: Web browser that blocks ads and trackers by default (nightly binary release).
Upstream URL: https://brave.com/download-nightly
Keywords: brave
Licenses: MPL2
Provides: brave-nightly-bin, brave-nightly-browser
Submitter: gregbunk
Maintainer: brave-prerelease
Last Packager: brave-prerelease
Votes: 34
Popularity: 3.00
First Submitted: 2019-03-28 14:18 (UTC)
Last Updated: 2025-03-31 15:15 (UTC)

Dependencies (9)

Required by (0)

Sources (3)

Pinned Comments

brave-prerelease commented on 2025-02-06 13:55 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 5 6 7 Next › Last »

gregbunk commented on 2022-04-28 12:57 (UTC)

I haven't seen that, Archanfel80HUN. That does sound frustrating.

Please report that to Brave directly - this is simply a repackaged version of what they produce.

Archanfel80HUN commented on 2022-04-28 11:35 (UTC)

In the latest 2-3 updates i noticed a nasty bug. Its have a memory leak which is consumed all the available Xsocket connection. Once the maximum connection of Xorg sockets depleted nothing starts anymore and the whole system become unresponsive. The log files full of this: cannot open display: :0.0 Maximum number of clients reached

According to xrestop brave eats 190+ connection and eventually the default 256 limit reached. Revert back to the non nightly version the problem is gone.

gregbunk commented on 2021-10-21 20:18 (UTC)

Not seeing any glitches here, but am seeing the (annoying) warning. It appears that brave is setting that itself, when it starts the renderer processes.

I'll keep poking around.

DelightfulFlower commented on 2021-10-21 20:06 (UTC) (edited on 2021-10-21 20:06 (UTC) by DelightfulFlower)

What is going on with the latest version (1.33.25-2) since I get a warning when opening the browser:

You are using an unsupported command-line flag: --translate-security-origin=https://translate.brave.com. Stability and security will suffer."

Stability definitely suffered since the browser has weird glitches now.

wknapik commented on 2021-10-21 17:09 (UTC)

Thanks gregbunk!

gregbunk commented on 2021-10-21 13:40 (UTC)

Thanks, wknapik. Added the chmod. It should be all set.

wknapik commented on 2021-10-20 22:51 (UTC)

Doesn't work with linux-hardened, presumably because of CONFIG_USER_NS_UNPRIVILEGED!=y.

% zgrep CONFIG_USER_NS_UNPRIVILEGED /proc/config.gz
# CONFIG_USER_NS_UNPRIVILEGED is not set
% brave-nightly 
[77169:77169:1021/004906.293351:FATAL:setuid_sandbox_host.cc(158)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /opt/brave.com/brave-nightly/chrome-sandbox is owned by root and has mode 4755.
/opt/brave.com/brave-nightly/brave-browser: line 48: 77169 Trace/breakpoint trap   (core dumped) "$HERE/brave" "$@"
% ls -l /opt/brave.com/brave-nightly/chrome-sandbox
-rwxr-xr-x 1 root root 237728 Oct 20 23:31 /opt/brave.com/brave-nightly/chrome-sandbox
% 

The stable package brave-bin addresses this here https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=brave-bin#n51 with

# allow firejail users to get the suid sandbox working
chmod 4755 "$pkgdir/usr/lib/brave-bin/chrome-sandbox"

pmorales commented on 2021-09-09 16:25 (UTC)

@gregbunk Awesome! Thanks

gregbunk commented on 2021-09-09 16:01 (UTC)

Sure. Added. Thanks!

pmorales commented on 2021-09-09 15:03 (UTC)

Hi. Can you add custom flags support? Maybe like in brave-bin package (https://aur.archlinux.org/cgit/aur.git/tree/brave-bin.sh?h=brave-bin)

#!/usr/bin/env bash
XDG_CONFIG_HOME="${XDG_CONFIG_HOME:-$HOME/.config}"

# Allow users to override command-line options
USER_FLAGS_FILE="$XDG_CONFIG_HOME/brave-nightly-flags.conf"
if [[ -f $USER_FLAGS_FILE ]]; then
   USER_FLAGS="$(cat $USER_FLAGS_FILE | sed 's/#.*//')"
fi

exec /opt/brave.com/brave-nightly/brave-browser "$USER_FLAGS" "$BRAVE_FLAGS" "$FLAG" "$@"