LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-23-2013, 04:46 PM   #1
1337_powerslacker
Member
 
Registered: Nov 2009
Location: Kansas, USA
Distribution: Slackware64-15.0
Posts: 862
Blog Entries: 9

Rep: Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592Reputation: 592
Chromium package added to Alien Bob's repository!


I just wanted to give a shout-out to Alien Bob for taking the time to build Chromium, and upload it for all and sundry to download. For a while now, I've wanted to try Chromium, but it's only been available in source form, and building the browser from source, while possible, is a serious pain in the posterior.

Where practical, I like to run open-source software on my computer, and I do. (Except for the AMD driver blob, that is!). But Chrome has been easier simply to download in the 64-bit .deb format, and run through the SlackBuild to produce a package to install. It works, but I've been bothered by the fact that Chrome is a closed-source package, not open to inspection. However, Chrome contains Flash, and while Flash has been universally condemned (perhaps rightly) as an outdated technology, a good percentage of websites still use it, and so we need something to help fill in the gap until Flash is finally extinct.

If I had gone ahead and downloaded the source for Chromium, built and installed it, it still wouldn't fill my needs, since Flash would be missing. Enter Alien Bob. His recent post helped cinch the decision for me. I took the plunge and downloaded both the browser and the plugin, and am happy to report that it is working fine for me, Flash and all.

A note to those who are running Chromium under KDE: When first launched, the kwallet program will appear shortly after Chromium launches. I first noticed this annoyance after I first installed Chrome, so I googled for a solution, and found this. However, for Chromium users, a small change is required. Instead of this:
Code:
[Auto Deny]
kdewallet=Google Chrome
Use this:
Code:
[Auto Deny]
kdewallet=Chromium
The same solution is achieved.

Thanks again, Alien Bob for taking the time to compile Chromium and giving us a tutorial on making it fully functional.

Regards,

Matt
 
Old 11-23-2013, 05:50 PM   #2
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
The other way you can do it is to set the kwallet password to a blank password, ie. no password at all.

samac

---------- Post added 11-23-13 at 11:50 PM ----------

The other way you can do it is to set the kwallet password to a blank password, ie. no password at all.

samac
 
Old 11-24-2013, 04:20 AM   #3
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
Strange, I can't edit the double post above.

samac
 
Old 11-24-2013, 04:21 AM   #4
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
Strange, when I post quick reply it submits the post twice, and I cannot edit it.

samac
 
Old 11-24-2013, 04:24 AM   #5
samac
Senior Member
 
Registered: Mar 2004
Location: Kirkwall, Orkney
Distribution: Linux Mint 20.3 - Cinnamon
Posts: 1,425

Rep: Reputation: 139Reputation: 139
I cannot edit full stop. Using post reply sends once. Using post quick reply posts the reply and then comes up with the post reply screen, with a message saying that you have to wait 3 seconds before reposting.

I am going to send this one by post quick reply.

samac

---------- Post added 11-24-13 at 10:25 AM ----------

I cannot edit full stop. Using post reply sends once. Using post quick reply posts the reply and then comes up with the post reply screen, with a message saying that you have to wait 3 seconds before reposting.

I am going to send this one by post quick reply.

samac
 
Old 11-24-2013, 06:49 AM   #6
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
The whole idea behind integration with the Desktop Enviroment's encrypted password vaults (Kwallet in KDE and Gnome Keyring in other DE's) is that Chromium itself does not use any form of encryption when storing your passwords.

Try running this command when you do not use Kwallet or Gnome Keyring with Chromium:
Code:
sqlite3  ~/.config/chromium/Default/Login\ Data .dump
If Chromium is storing your passwords encrypted in Kwallet or Gnome Keyring, then that dump shows only the structure of the "logins" database. If you denied the use of an encrypted storage, you will see all your saved login data in cleartext.

For Google Chrome, that command would be:
Code:
sqlite3 ~/.config/google-chrome/Default/Login\ Data .dump
Eric
 
Old 11-24-2013, 07:11 AM   #7
Speek
Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Slackware
Posts: 124

Rep: Reputation: 41
Thanks Eric! I have installed your package, but when I try to start chromium I get this:
Code:
[13770:13770:1124/140401:ERROR:shared_memory_posix.cc(213)] Creating shared memory in /dev/shm/.org.chromium.Chromium.pVJPdJ failed: Permission denied
[13770:13770:1124/140401:ERROR:shared_memory_posix.cc(216)] Unable to access(W_OK|X_OK) /dev/shm: Permission denied
[13770:13770:1124/140401:FATAL:shared_memory_posix.cc(218)] This is frequently caused by incorrect permissions on /dev/shm.  Try 'sudo chmod 1777 /dev/shm' to fix.
It's no problem for me to fix this, but I'm wondering if I'm the only one. I don't have an entry for /dev/shm in /etc/fstab.
 
Old 11-24-2013, 07:55 AM   #8
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
Quote:
Originally Posted by Speek View Post
Thanks Eric! I have installed your package, but when I try to start chromium I get this:
Code:
[13770:13770:1124/140401:ERROR:shared_memory_posix.cc(213)] Creating shared memory in /dev/shm/.org.chromium.Chromium.pVJPdJ failed: Permission denied
[13770:13770:1124/140401:ERROR:shared_memory_posix.cc(216)] Unable to access(W_OK|X_OK) /dev/shm: Permission denied
[13770:13770:1124/140401:FATAL:shared_memory_posix.cc(218)] This is frequently caused by incorrect permissions on /dev/shm.  Try 'sudo chmod 1777 /dev/shm' to fix.
It's no problem for me to fix this, but I'm wondering if I'm the only one. I don't have an entry for /dev/shm in /etc/fstab.
I have this definition in /etc/fstab (Slackware's default, this is added by 'setup' during installation):
Code:
tmpfs            /dev/shm         tmpfs       defaults         0   0
And these are the permissions of /dev/shm :
Code:
$ ls -la /dev/ | grep shm
drwxrwxrwt  2 root root          60 Nov 24 14:52 shm/
I do not have the errors you are getting.

Eric
 
2 members found this post helpful.
Old 11-24-2013, 08:22 AM   #9
Speek
Member
 
Registered: Sep 2003
Location: The Netherlands
Distribution: Slackware
Posts: 124

Rep: Reputation: 41
Quote:
Originally Posted by Alien Bob View Post
I have this definition in /etc/fstab (Slackware's default, this is added by 'setup' during installation):
Code:
tmpfs            /dev/shm         tmpfs       defaults         0   0
I added the line to /etc/fstab, rebooted, and probllem solved! I must have removed this line some time. Many thanks!
 
Old 11-25-2013, 07:05 PM   #10
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Rep: Reputation: 40
I used the scripts with api from Alien`s to build the 31.0.1650.57 version.
Until now, all things working flawless, even the issue on this thread http://www.linuxquestions.org/questi...ox-4175474690/ is working with iced web.
Great work Eric!!
(This package is a great replacement for google chrome on Slackware tree)
 
  


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
Small Issue with Alien Bob's VLC package and DVD playback on 14.1 Daedra Slackware 1 11-08-2013 12:40 AM
Alien Bob's Server Down? vtel57 Slackware 8 03-28-2011 08:51 PM
unable to build gspca from Alien Bob Slackbuilds package adityavpratap Slackware 5 08-03-2009 11:01 PM
Alien Bob GCC 3.4 Package Woodsman Slackware 2 03-01-2008 02:52 PM
One for Alien Bob cwwilson721 Slackware 28 08-15-2006 04:26 PM

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

All times are GMT -5. The time now is 09:58 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