LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices


Reply
  Search this Thread
Old 05-18-2008, 03:23 AM   #1
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Rep: Reputation: 15
Updated packages?


I've just reinstalled Fedora to have another look at it and it announced that there were updated packages available. Could someone tell me whether this information is contained in the installation itself, or has the program surreptitiously connected to the internet? If the latter, could you tell me whether this is logged anywhere, so that I can find out what it has done? Thank you.
 
Old 05-18-2008, 07:17 AM   #2
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by Honeysuckle View Post
I've just reinstalled Fedora to have another look at it
Usually reinstalling the OS isn't necessary, unless there's structural problems like using a "bad" partitioning scheme or fscking up the installation beyond repair.


Quote:
Originally Posted by Honeysuckle View Post
Could someone tell me whether this information is contained in the installation itself, or has the program surreptitiously connected to the internet?
The latter. Probably a service ('yumupdatesd'?).


Quote:
Originally Posted by Honeysuckle View Post
If the latter, could you tell me whether this is logged anywhere, so that I can find out what it has done?
From the console try 'yum check-update'. From within your Desktop Environment try 'pirut'. Yum logs actions to /var/log/yum.log or syslog.
 
Old 05-18-2008, 09:40 AM   #3
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Quote:
Usually reinstalling the OS isn't necessary
It is when the OS isn't on the computer (sorry, I couldn't resist...) I should have just said "installed again"... (I'd looked at it before, but it wasn't on the computer any more.)
Quote:
Probably a service ('yumupdatesd'?)
Yes, having trawled through the menus, I think you're right, thanks.

Is it possible to control the network connection at all? I'd ticked the box for it NOT to start on boot, so I was not impressed that it connected without my settings having been entered. I have no idea what settings it used to connect itself.

There's a network setting with buttons to activate and deactivate, but deactivating is pointless - if the modem is on, it just reconnects itself after briefly disconnecting.

If I do ifconfig eth0 down/up will that work and stay off, or will it just ignore that too?
 
Old 05-18-2008, 09:56 AM   #4
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by Honeysuckle View Post
I have no idea what settings it used to connect itself.
Heh, the default settings of course.


Quote:
Originally Posted by Honeysuckle View Post
There's a network setting with buttons to activate and deactivate, but deactivating is pointless - if the modem is on, it just reconnects itself after briefly disconnecting.
There's GUI tools for that but commandline is easier to remember and explain: in /etc/sysconfig/network check if "NETWORKING=no" and in /etc/sysconfig/network-scripts/ifcfg-eth0 has "ONBOOT=no".


Quote:
Originally Posted by Honeysuckle View Post
If I do ifconfig eth0 down/up will that work and stay off, or will it just ignore that too?
No, on reboot the device will come up unless the configuration is changed.
 
Old 05-18-2008, 10:53 AM   #5
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Thanks, unSpawn, the settings were as you said. What is the point in having settings if they are of no effect? (That's just an exclamation of frustration, not a question requiring answer.) Thanks anyway.
 
Old 05-18-2008, 08:23 PM   #6
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Hmm. Any "weird" messages in /var/log/messages?
 
Old 05-19-2008, 02:36 AM   #7
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by unSpawn View Post
Hmm. Any "weird" messages in /var/log/messages?
Although I expected to find something along the lines of "This computer has detected that you are a useless lump. Your inadequacy as a computer user is scheduled for display every 5 minutes.", no, there's nothing in there.
 
Old 05-19-2008, 05:12 AM   #8
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
OK. Does 'chkconfig --list network' show it's off for all runlevels? If not, say you want to disable it in runlevels 3, 4 and 5 do 'chkconfig --level 345 network off', then list again to see if it worked.
 
Old 05-19-2008, 06:41 AM   #9
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by unSpawn View Post
OK. Does 'chkconfig --list network' show it's off for all runlevels?
Yes, and it continues to say it is off, even when the "plug" icon lights up to announce that it is connected.
 
Old 05-19-2008, 08:09 AM   #10
unSpawn
Moderator
 
Registered: May 2001
Posts: 29,415
Blog Entries: 55

Rep: Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600Reputation: 3600
Quote:
Originally Posted by Honeysuckle View Post
Yes, and it continues to say it is off, even when the "plug" icon lights up to announce that it is connected.
Sorry, but I don't know what taskbar icon that relates to. Yum update daemon? Network device? ...and maybe it's time to spill some info about your network connection and hardware too because this sounds like it's gonna be, uh, interesting.
 
Old 05-19-2008, 09:19 AM   #11
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by unSpawn View Post
Sorry, but I don't know what taskbar icon that relates to.
It's called Network Manager (and interestingly I found a checkbox when you right click it which is for "enabling network". I wonder where that fits in....)
The computer's connected by ethernet cable to the router/modem (but the switch is packing up from all of this turning off and on, so I am going to start using a new one.)
 
Old 05-23-2008, 01:06 AM   #12
chrism01
LQ Guru
 
Registered: Aug 2004
Location: Sydney
Distribution: Rocky 9.2
Posts: 18,364

Rep: Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752Reputation: 2752
Well, if you really don't want it on the net, unplug the eth cable
 
Old 05-23-2008, 01:27 AM   #13
Honeysuckle
Member
 
Registered: Dec 2007
Location: Australia
Distribution: Puppy, debian
Posts: 118

Original Poster
Rep: Reputation: 15
Quote:
Originally Posted by chrism01 View Post
Well, if you really don't want it on the net, unplug the eth cable
I want to control it, and for it to do what it is told. Maybe I should stick with the OS that does let me control it - Windows????
 
  


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
Create new install disc with updated packages RandomUser56 Linux - General 1 10-03-2006 01:53 PM
updated kdebase & kdepim packages. KMcD Slackware 6 04-26-2005 07:19 AM
2.6.1 updated packages needed Dakota Mike Slackware 2 01-21-2004 04:19 PM
getting updated packages with apt-get synaptic Bruce Hill Linux - Software 1 07-26-2003 09:48 PM
getting updated packages dsofreak Slackware 5 03-21-2003 08:39 AM

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

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