LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 08-01-2022, 04:15 PM   #1
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Rep: Reputation: Disabled
Software Manager's Brave Browser


Hello
Downloaded and installed the Brave Browser. In addition to the description in Software Manager there is a NOTE which states

"This package is not verified, affiliated with, or supported by Brave
Software".

If such is the case who is it affiliated with? I heard Google and it's really Chrome running. What gives? Would I be in a better position running Chromium?
 
Old 08-01-2022, 04:49 PM   #2
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,141
Blog Entries: 6

Rep: Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828Reputation: 1828
Quote:
Downloaded and installed the Brave Browser.
How? With your package manager? Or some other installer.

You installed Brave with your package manager and it works? But the installation gives a mesage?

Quote:
If such is the case who is it affiliated with?
Probably made by Linux Mint, if that is what you are using.
 
Old 08-01-2022, 05:04 PM   #3
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by teckk View Post
How? With your package manager? Or some other installer.

You installed Brave with your package manager and it works? But the installation gives a mesage?


Probably made by Linux Mint, if that is what you are using.
Installed as stated with Software Manager.

Brave works. Prior to installation there is the "Note".

Running LMDE
 
Old 08-01-2022, 07:39 PM   #4
hish2021
Member
 
Registered: Jan 2021
Posts: 117

Rep: Reputation: Disabled
For Debian-based systems, I follow the steps listed here: https://brave.com/linux/.
 
Old 08-02-2022, 07:49 AM   #5
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hish2021 View Post
For Debian-based systems, I follow the steps listed here: https://brave.com/linux/.
To delete Brave browser I could go back into Software Manager and uninstall but prefer to do it via the command line. What would be the command to delete Brave but also cleanup any remaining files?
 
Old 08-02-2022, 09:04 AM   #6
hish2021
Member
 
Registered: Jan 2021
Posts: 117

Rep: Reputation: Disabled
Quote:
Originally Posted by poncedeleon View Post
To delete Brave browser I could go back into Software Manager and uninstall but prefer to do it via the command line. What would be the command to delete Brave but also cleanup any remaining files?
The note you got is quite unusual. Anyway, deleting it via the package manager shouldn't be an issue. But if you want to do it via the command line, it may be useful to first know what exactly has been installed and where.

On my Xubuntu 22.04, with Brave installed as per the site's link:
Code:
brave-browser --version
returns
Code:
Brave Browser 103.1.41.100
Code:
which brave-browser
returns
Code:
/usr/bin/brave-browser
Code:
zgrep "status installed brave" /var/log/dpkg.log*
returns
Code:
/var/log/dpkg.log.1:2022-07-06 05:41:30 status installed brave-browser:amd64 1.40.113
/var/log/dpkg.log.1:2022-07-13 05:29:05 status installed brave-browser:amd64 1.41.96
/var/log/dpkg.log.1:2022-07-21 05:40:30 status installed brave-browser:amd64 1.41.99
/var/log/dpkg.log.1:2022-07-22 05:32:55 status installed brave-browser:amd64 1.41.100
/var/log/dpkg.log.2.gz:2022-06-28 18:18:25 status installed brave-keyring:all 1.13
/var/log/dpkg.log.2.gz:2022-06-28 18:18:26 status installed brave-browser:amd64 1.40.107
Do you see something similar?

If you do,
first run this simulation (sudo not required)
Code:
apt -s purge brave-keyring
You should see this:
Code:
...

The following packages will be REMOVED:
  brave-browser* brave-keyring*
...
Then, to really remove both packages, run
Code:
sudo apt purge brave-keyring
User-specific config/data is in ~/.config/BraveSoftware. Delete that if you're sure want a clean slate, no bookmarks, no history, no passwords, no cookies, etc ... .
 
Old 08-02-2022, 09:25 AM   #7
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hish2021 View Post
The note you got is quite unusual. Anyway, deleting it via the package manager shouldn't be an issue. But if you want to do it via the command line, it may be useful to first know what exactly has been installed and where.

On my Xubuntu 22.04, with Brave installed as per the site's link:
Code:
brave-browser --version
returns
Code:
Brave Browser 103.1.41.100
Code:
which brave-browser
returns
Code:
/usr/bin/brave-browser
Code:
zgrep "status installed brave" /var/log/dpkg.log*
returns
Code:
/var/log/dpkg.log.1:2022-07-06 05:41:30 status installed brave-browser:amd64 1.40.113
/var/log/dpkg.log.1:2022-07-13 05:29:05 status installed brave-browser:amd64 1.41.96
/var/log/dpkg.log.1:2022-07-21 05:40:30 status installed brave-browser:amd64 1.41.99
/var/log/dpkg.log.1:2022-07-22 05:32:55 status installed brave-browser:amd64 1.41.100
/var/log/dpkg.log.2.gz:2022-06-28 18:18:25 status installed brave-keyring:all 1.13
/var/log/dpkg.log.2.gz:2022-06-28 18:18:26 status installed brave-browser:amd64 1.40.107
Do you see something similar?

If you do,
first run this simulation (sudo not required)
Code:
apt -s purge brave-keyring
You should see this:
Code:
...

The following packages will be REMOVED:
  brave-browser* brave-keyring*
...
Then, to really remove both packages, run
Code:
sudo apt purge brave-keyring
User-specific config/data is in ~/.config/BraveSoftware. Delete that if you're sure want a clean slate, no bookmarks, no history, no passwords, no cookies, etc ... .
Thank you for your input. The commands are not working perhaps because I am not using your version of Ubuntu. I am going to pose this question to another forum specific to my distribution. Take care.
 
Old 08-02-2022, 03:24 PM   #8
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hish2021 View Post
For Debian-based systems, I follow the steps listed here: https://brave.com/linux/.
Done!
Thanks hish2021
 
Old 08-08-2022, 10:18 AM   #9
poncedeleon
Member
 
Registered: Jul 2021
Location: Patagonia
Distribution: Linux Mint Debian Enhanced LMDE
Posts: 195

Original Poster
Rep: Reputation: Disabled
Quote:
Originally Posted by hish2021 View Post
For Debian-based systems, I follow the steps listed here: https://brave.com/linux/.

hish2021 I installed Brave as per your link. Prior to the installation I uninstalled the Brave browser which was/is available in Software Manager.

This morning I received an update from Update Manager which one is the Brave Browser 1.42.88

The Brave installed from your link, directly from Brave.com is 1.42.86
Should I download the latest from Update Manager? Would this download be coming from Brave.com repository or from Debians repository? I don't want to have a conflict between the two sources.

What say?

Thanks
 
  


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 Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Brave on Kubuntu 20.04 - Unable to run the command specified. The file or folder /snap/brave/107/opt/brave.com/brave/brave does not exist. vmelkon Ubuntu 5 03-02-2022 04:57 PM
LXer: Brave takes brave stand against Google's plan to turn websites into ad-blocker-thwarting Web Bundles LXer Syndicated Linux News 0 08-29-2020 10:12 PM
LXer: Linux Foundation Sells Out, Brave New Browser & More... LXer Syndicated Linux News 0 01-23-2016 07:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 03:46 PM.

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