Kali Linux Install Brave browser: Difference between revisions

From WikiMLT
Line 19: Line 19:


* Clear host cache via: <code>brave://net-internals/#dns</code>
* Clear host cache via: <code>brave://net-internals/#dns</code>
== Fix "Show in folder" option ==
Out of the box the option "Show in folder" - position {{Pti|s=1|i=A|c=green}} at {{Media-cite|sf|1}} - doesn't open the target directory which is set as default File explorer. This issue is also valid for the other Chromium and Firefox based browsers.
{{Sform
| n = 1
| image = Brave-browser-show-in-folder-option.webp
| m = {{pt|s=1|i=A|c=green|a=90|x=380|y=113|z=1.2}}
| s = .85
| t = 16
| side = 16
}}
The only [https://unix.stackexchange.com/a/581233/201297 working solution] I've found is that shown below.<syntaxhighlight lang="shell" line="1">
sudo nano /etc/dbus-1/session-local.conf
</syntaxhighlight><syntaxhighlight lang="xml" line="1" class="mlw-continue">
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
"http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd">
<busconfig>
  <policy context="default">
    <!-- Block all usage of org.freedesktop.FileManager1 for opening files -->
    <deny send_interface="org.freedesktop.FileManager1" send_destination="org.freedesktop.FileManager1"/>
  </policy>
</busconfig>
</syntaxhighlight>
<syntaxhighlight lang="shell" line="1">
dbus-send --session --print-reply --dest=org.freedesktop.DBus --type=method_call /org/freedesktop/DBus org.freedesktop.DBus.ReloadConfig
</syntaxhighlight>Source, other approaches and references:
* Unix and Linux: [https://unix.stackexchange.com/a/581233/201297 '''How to use Nautilus as default in XFCE?''' (the answer provided by @smac89)]
* Reddit: [https://www.reddit.com/r/chrome/comments/g5x9sf/comment/i3tf9y3/?utm_source=reddit&utm_medium=web2x&context=3 Wrong file manager called when "Show in folder" in Ubuntu 19.10 (Linux)]
* Ask Ubuntu: [https://askubuntu.com/questions/39769/chromium-show-in-folder-opens-in-text-editor Chromium "Show in Folder" opens in text editor]<syntaxhighlight lang="shell" line="1">
mimeopen -d ~/Documents
</syntaxhighlight>
* Unix and Linux: [https://unix.stackexchange.com/a/115267/201297 How do I set Nautilus as default file manager in Elementary OS]<syntaxhighlight lang="bash" class="mlw-continue">
# What's the current default file manager?
</syntaxhighlight><syntaxhighlight lang="shell" line="1" class="mlw-continue">
xdg-mime query default inode/directory
</syntaxhighlight><syntaxhighlight lang="bash" class="mlw-continue">
# Set Nautilus as a default file manager
</syntaxhighlight><syntaxhighlight lang="shell" line="1" class="mlw-continue">
xdg-mime default nautilus.desktop inode/directory application/x-gnome-saved-search
</syntaxhighlight>
* Unix and Linux: [https://unix.stackexchange.com/questions/57302/change-chromium-from-automatically-launches-nautilus-with-the-show-in-folder-com Change Chromium from automatically launches Nautilus with the Show In Folder command]
* Mozilla Bugzilla: [https://bugzilla.mozilla.org/show_bug.cgi?id=727422 /usr/share/applications/mimeinfo.cache is used for default applications]
* Ubuntu Community Wiki: [https://help.ubuntu.com/community/DefaultFileManager Default File Manager]
* It's Foss: [https://itsfoss.com/install-nemo-file-manager-ubuntu/#make-nemo-default-file-manager-in-ubuntu How to Install and Make Nemo the Default File Manager in Ubuntu]


== References ==
== References ==

Revision as of 11:19, 20 September 2022

In­stal­la­tion

Kali Lin­ux is a De­bian based dis­tri­b­u­tion, so we can in­stall the Brave brows­er in the same way as it is de­scribed in the Brave's of­fi­cial doc­u­men­ta­tion. In the fol­low­ing steps we will add the re­lease chan­nel repos­i­to­ry of Brave and then in­stall it,

sudo apt update && sudo apt install apt-transport-https 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 arch=amd64] 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

Set­tings

  • If you are us­ing your lo­cal DNS ser­vice as Pi­hole, you may need to dis­able the op­tion Use se­cure DNS with­in brave://settings/.
  • Clear host cache via: brave://net-internals/#dns

Ref­er­ences