yum updates in fedora 17 going extremely slow [closed] - linux

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I've just installed Fedora 17 and did an initial update:
yum update
yum update download speed is going way too slow. Download speed is 5 kbps.
Is there a way to tell yum to not pick such slow repositories?

Someone wrote a yum plugin which addresses this very issue that tells yum to use the fastest mirror available, here is how you install it:
su
enter password
yum install yum-plugin-fastestmirror
Then I did the:
yum update
And now the yum update is utilizing the full bandwidth of my download speed.

Related

Linux Distribution with G++ installed [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I am having a bit of a nightmare running up an Ubuntu distribution on an offline machine. Can anyone advise a distribution of Linux with G++ (or the contents of the build essential ubuntu package) as standard?
It is an absolute nightmare trying to download all the dependencies separately and I'm not getting on with Keryx at all. Many people have noted that build-essential package is available on the Ubuntu install CD but I can't find it on the 12.04 install CD using
sudo apt-get install build-essential
To those trying to close the question: This is programming related, I'm trying to get hold of g++ - comes under tools.

update package in debian [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
i have tshark installed in my debian linux which has version of 1.2.11. I want to update it to 1.8.0-1. I am trying it updated using
apt-get update
But, it still the latest version is not installed. Is this the way to update a package?
apt-get update (as sudo)
apt-get dist-upgrade
Hope this help.
Regards.
Calling
apt-get update
only updates the list with available packages.
You need to run
apt-get upgrade
after "apt-get update" to install the newest versions of all packages currently installed on the system.
See the man page for apt-get (you can also view it online e.g. http://linux.die.net/man/8/apt-get)

How to install packages from command line on Suse [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
What is the Suse version of apt-get or yum?
How do I install software packages from the command line?
A fairly intense session of googling suggests that it may be yast or yast2, but no sensible HOWTO of listing and installing packages from the command line seems to exist. (maybe I am looking in the wrong place)
If I am an administrator for a remote Suse server, how do I install packages from the command line? (Not using a GUI and preferably installing from a central repo)
zypper
Found a tutorial for you
And official documentation

Installation of Apache on CentOS [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
How to install Apache on a CentOS 7?
1) login as root or use sudo
2) yum install -y httpd or sudo yum install -y httpd
3)all config files are locates in /etc/httpd/conf and /etc/httpd/conf.d
4)all your html files can be found in /var/www/html
5) Start learning the basic at http://www.centos.org/docs/5/html/Deployment_Guide-en-US/ch-httpd.html
6) grab a cup of coffee, tea or whatever you like most.
Or just edit your /etc/httpd/conf/httpd.conf near the bottom and voila you have a new vhost!

How to update the man in bash [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have been trying Linux recently so my questions must be too much easy for you .Anyway
I try to look the man of lseek but there is no man for this function . I'd like to know how to update the man of linux on bash.
thank in advance
On Debian the commands would be (as root)
apt-get install man-db
apt-get install manpages-dev
And for completeness
apt-get install glibc-doc

Resources