LinuxQuestions.org
Help answer threads with 0 replies.
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 02-17-2010, 12:37 AM   #1
tallship
Member
 
Registered: Jul 2003
Location: On the Beaches of Super Sunny Southern San Clemente, California USA
Distribution: Slackware - duh!
Posts: 534
Blog Entries: 3

Rep: Reputation: 118Reputation: 118
Does anyone have a package bundled up for Google Chrome yet?


I'm looking to find a Slackware package for Google Chrome. Alternatively, I'll just create one and make it available, but what's up with Linuxpackages.net???

The search engine over there is almost as if there aren't any Slackware 13.0 packages? Is there something wrong with the site?

I read about the virtual homelessness and then getting back into the groove of things, but it seems that something is broken over there.
 
Old 02-17-2010, 12:56 AM   #2
bathory
LQ Guru
 
Registered: Jun 2004
Location: Piraeus
Distribution: Slackware
Posts: 13,167
Blog Entries: 1

Rep: Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038Reputation: 2038
Hi

A chrome package exists here

Cheers
 
2 members found this post helpful.
Old 02-17-2010, 01:16 AM   #3
piratesmack
Member
 
Registered: Feb 2009
Distribution: Slackware, Arch
Posts: 519

Rep: Reputation: 142Reputation: 142
There's also a SlackBuild
http://slackbuilds.org/repository/13...google-chrome/
 
1 members found this post helpful.
Old 02-17-2010, 03:34 AM   #4
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
Quote:
Originally Posted by tallship View Post
but what's up with Linuxpackages.net???

...

it seems that something is broken over there.
Good. Perhaps it will stop people using packages with no quality control and get more people to use (and contribute to) slackbuilds.org instead.

The only prebuilt packages that can be trusted are those by AlienBob and rworkman.
 
1 members found this post helpful.
Old 02-17-2010, 04:46 AM   #5
tallship
Member
 
Registered: Jul 2003
Location: On the Beaches of Super Sunny Southern San Clemente, California USA
Distribution: Slackware - duh!
Posts: 534

Original Poster
Blog Entries: 3

Rep: Reputation: 118Reputation: 118
Exclamation

Quote:
Originally Posted by dive View Post

The only prebuilt packages that can be trusted are those by AlienBob and rworkman.
Well that's not actually true, although I know what you're saying and certainly appreciate the caveat as a valid warning when acquiring packages from untrusted sources.

By the same token, I would also warn RPM users of the same potentially dangerous possibilities when surfing rpmfind.net

But there are more people than just AlienBob and Robby that bundle up trustworthy packages
 
Old 02-17-2010, 04:49 AM   #6
mrclisdue
Senior Member
 
Registered: Dec 2005
Distribution: Slackware
Posts: 1,134

Rep: Reputation: 277Reputation: 277Reputation: 277
Quote:
Originally Posted by dive View Post
...The only prebuilt packages that can be trusted are those by AlienBob and rworkman....
Whilst I, too, offer carte blanche to those two stalwarts, I agree with 'bathory' that the folks at slacky.eu aren't too shabby themselves....

cheers,
 
Old 02-17-2010, 07:23 AM   #7
dive
Senior Member
 
Registered: Aug 2003
Location: UK
Distribution: Slackware
Posts: 3,467

Rep: Reputation: Disabled
Well as far as I know just about anyone can submit packages to slacky.eu. I trust alienBob and rworkman because they are part of the dev team.

Still, at the end of the day it is much better to grab a slackbuild and build it yourself.
 
Old 02-17-2010, 09:47 AM   #8
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware, VMs
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
I'm running the Google-chrome package created by using the build script at SBo. I avoid untrusted Slackware package sites.

http://slackbuilds.org/repository/13...google-chrome/
 
Old 02-17-2010, 12:47 PM   #9
ahwm
Member
 
Registered: Jan 2010
Location: Idaho
Distribution: Slackware 14.1
Posts: 41

Rep: Reputation: 16
I got Chrome off SlackBuilds yesterday. Other than having to install two other libraries before it would work, it works perfectly. And as long as you get the right two packages, you should be fine.

I was using linuxpackages.net for a while when I first started using Slackware, but it's just easier now to use SlackBuilds because of the lack of variety and lack of 13-compatible packages at linuxpackages...
 
Old 02-17-2010, 04:24 PM   #10
SCerovec
Senior Member
 
Registered: Oct 2006
Location: Cp6uja
Distribution: Slackware on x86 and arm
Posts: 2,477
Blog Entries: 2

Rep: Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982Reputation: 982
I've built my Chrome out of the Google's RPM package
rpm2tgz

as simple as that , and it failed to run, of course...
then i added this script:
Code:
#! /bin/bash

#####
#
# the patch for google chrome on Slackware 13.0
# The rpm for fedora was converted with rpm2tgz ;-)
# GPL v3 apply. Cest73@gmail.com
#
####



libdir="/usr/lib/"
finddir="/usr/lib/seamonkey/"
EXE="chrome"
DIR="/opt/google/chrome/"
lst=$(ldd $DIR$EXE | grep "not found" | sed s/" => not found"/""/)
echo missing: [$lst]
echo "chrome executable:" $EXE
echo "chrome dir:" $DIR
# this was for slackware 13.0
# lst="libnss3.so.1d libnssutil3.so.1d libsmime3.so.1d libssl3.so.1d libplds4.so.0d  libplc4.so.0d libnspr4.so.0d"

for f in $lst
    do
    d=`echo $f | sed s/"\..d$"/""/`
    echo loacating "[$d]"
    h=`find $finddir -name $d`
    if [ -z $h ]; then
	echo not found!
	echo "missing [$h]!"
	else
	l=$libdir$f
	echo found!
	echo "symlinking[$h] to [$l]"
	rm -v $l
	ln -vs $h $l
	fi
    done
    
    
echo "done."
i call it chrome-fail.sh

Since it was a beta, i expect the annoyance to change accordingly?
EDIT:

Ah! once You update seamonkey, re-run the script?

Last edited by SCerovec; 02-17-2010 at 04:25 PM.
 
Old 02-17-2010, 04:45 PM   #11
amiga32
Member
 
Registered: Mar 2009
Location: Illinois
Distribution: slackware bro
Posts: 161

Rep: Reputation: 38
Quote:
Originally Posted by tallship View Post
But there are more people than just AlienBob and Robby that bundle up trustworthy packages
They are both significant Slackware contributors though. You can be quite certain they are trusted and meet quality standards. Slackbuilds is also nice because you can look at the build script and build it yourself, that way the only person you can doubt is yourself.
 
  


Reply

Tags
google chrome



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
Google Chrome SlackBuild pwc101 Slackware 10 10-03-2009 08:53 AM
Google Chrome + Ubuntu camh Linux - Software 3 08-01-2009 04:44 AM
LXer: Google Chrome OS: I don't think so LXer Syndicated Linux News 0 07-16-2009 04:30 PM
LXer: Google Chrome on KDE4.2 - Why not? LXer Syndicated Linux News 0 02-06-2009 09:30 AM
Does SUSE linux have a bundled package of music/recording apps? bgryderclock SUSE / openSUSE 2 06-17-2006 01:50 PM

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

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