Unix Technical Forum

global update checking

This is a discussion on global update checking within the Slackware Linux Support forums, part of the Unix Operating Systems category; --> silly question but, with RedHat, bad as it was, it had a utility for checking for package updates. Does ...


Go Back   Unix Technical Forum > Unix Operating Systems > Slackware Linux Support

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 02-19-2008, 10:30 AM
Liam Marshall
 
Posts: n/a
Default global update checking

silly question but, with RedHat, bad as it was, it had a utility for
checking for package updates. Does Slackware have similar utils?

is there an installation util that checks for dependancies too?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 02-19-2008, 10:30 AM
Mark Hill
 
Posts: n/a
Default Re: global update checking

On Sun, 11 Apr 2004 21:19:33 -0500,
Liam Marshall <lsrpm@mts.net> wrote:
> silly question but, with RedHat, bad as it was, it had a utility for
> checking for package updates. Does Slackware have similar utils?


There are a number of third-party tools that can do this, namely swaret
and slapt-get. You can also roll-your-own update script with bash and
rsync.

> is there an installation util that checks for dependancies too?


I think swaret can do this, but the native Slackware package manager
does not. (This is a feature. )


--
Mark Hill <usenet@mark.ukfsn.org> (devnull address not read)
GPG KeyID: 4A3B58AC
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 02-19-2008, 10:30 AM
Steve Youngs
 
Posts: n/a
Default Re: global update checking

* Liam Marshall <lsrpm@mts.net> writes:

> silly question but, with RedHat, bad as it was, it had a utility
> for checking for package updates. Does Slackware have similar
> utils?


There are things like "swaret", but I like...

$ ftp ftp.slackware.com RET

....best. Sometimes I might even lash out and use wget.

> is there an installation util that checks for dependancies too?


I am _very happy_ to report... No. Or, at least, I hope not.



--
|---<Steve Youngs>---------------<GnuPG KeyID: A94B3003>---|
| Ashes to ashes, dust to dust. |
| The proof of the pudding, is under the crust. |
|------------------------------<sryoungs@bigpond.net.au>---|
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 02-19-2008, 10:31 AM
Sebastian Stein
 
Posts: n/a
Default Re: global update checking

On Sun, 11 Apr 2004 21:19:33 -0500, Liam Marshall <lsrpm@mts.net> wrote:
> silly question but, with RedHat, bad as it was, it had a utility for
> checking for package updates. Does Slackware have similar utils?
>
> is there an installation util that checks for dependancies too?


Besides the mentioned tools by the other posters, there are 2 mailing lists
avaible which inform you, when new packages have arrived. You should
subscribe to them, so you don't have to run swaret or other tools every day.

Sebastian
--
http://www.hpfsc.de/ - die Seite rund um:
Assembler, Bundeswehr, TFT LCDs, Halle/Saale, Fahrradtouren, Neuseeland,
Wanderstaat Mauma, Raumschiff USS Nathan, Enemy Room, MLCAD Tutorial
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 02-19-2008, 10:33 AM
SuperDaemon
 
Posts: n/a
Default Re: global update checking

Mark Hill wrote:

> I think swaret can do this, but the native Slackware package manager
> does not. (This is a feature. )
>


right; "swaret --dep somepackage" would check for dependencies for
somepackage.

man swaret for more info.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 02-19-2008, 10:47 AM
Naota Hashimoto
 
Posts: n/a
Default Re: global update checking

On 2004-04-12, Mark Hill <devnull@mark.ukfsn.org> wrote:
> On Sun, 11 Apr 2004 21:19:33 -0500,
> Liam Marshall <lsrpm@mts.net> wrote:
>> silly question but, with RedHat, bad as it was, it had a utility for
>> checking for package updates. Does Slackware have similar utils?

>
> There are a number of third-party tools that can do this, namely swaret
> and slapt-get. You can also roll-your-own update script with bash and
> rsync.
>


I'd like to hear more about rolling my own update script , if you don't mind.
--
naSota@tPampabay.rAr.cMom - > (remove 'S P A M')

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 02-19-2008, 10:57 AM
Mark Hill
 
Posts: n/a
Default Re: global update checking

On Mon, 19 Apr 2004 22:56:26 GMT,
Naota Hashimoto <see@the.signature> wrote:
>
> I'd like to hear more about rolling my own update script , if you don't mind.


I like to mirror useful parts of the -current tree locally and upgrade
packages with upgradepkg from there. (E.G I may cd to the top-level
slackware package directory and type 'upgradepkg */*.tgz').

Below is the rsync script I use to mirror the parts of the tree I want,
and a bash script that checks the gpg signatures of the packages. (I
have the slackware key on my keyring.) I hope they give you some good
ideas.


### rsync-slackware-current.sh
#!/bin/sh

BASEDIR=/home/mark/src/slackware-current

cd $BASEDIR || exit

#--exclude=gnome/ \

rsync --delete-after \
--exclude=source/ \
--exclude=t/ \
--exclude=tcl/ \
--include="*/kde-i18n-en_GB*" \
--include="*/koffice-i18n-en_GB*" \
--exclude="kdei/*" --include=*/ \
-vaz \
rsync://ftp.heanet.ie/mirrors/ftp.slackware.com/pub/slackware/slackware-current/slackware/ slackware/



### check-slackware-sigs.sh
#!/bin/sh

SLACKWARE_ROOT="/home/mark/src/slackware-current/slackware/"

cd $SLACKWARE_ROOT || echo "WARNING: Can't cd to Slackware directory!"

for file in */*.asc
do
if ( /usr/bin/gpg --verify $file 2>/dev/stdout | /usr/bin/grep -i bad ); then
echo;
echo "$file signature did not verify";
exit;
fi
echo -n .
done

echo


--
Mark Hill <usenet@mark.ukfsn.org> (devnull address not read)
GPG KeyID: 4A3B58AC
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump


All times are GMT. The time now is 07:30 AM.


Powered by vBulletin® Version 3.6.5
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
www.UnixAdminTalk.com