download manager

Issues related to applications and software problems
abdossamad
Posts: 11
Joined: 2015/09/24 16:29:48

download manager

Post by abdossamad » 2017/04/18 08:27:48

hi centos expert
what is the best download manager for centos?
kget is not suitable

thanks in advance
samad

hunter86_bg
Posts: 2019
Joined: 2015/02/17 15:14:33
Location: Bulgaria
Contact:

Re: download manager

Post by hunter86_bg » 2017/04/18 12:15:46

Best for what ?
youtube downloads -> youtube-dl
http/ftp downloads -> wget/curl

abdossamad
Posts: 11
Joined: 2015/09/24 16:29:48

Re: download manager

Post by abdossamad » 2017/04/18 12:58:32

thanks for answer
how can i install wget/curl?
is this in centos repository? (yum install) or i should download source code ?


thanks

MartinR
Posts: 714
Joined: 2015/05/11 07:53:27
Location: UK

Re: download manager

Post by MartinR » 2017/04/18 13:12:24

1) Use either of:

Code: Select all

$ yum search wget
$ yum list | grep -i wget
The former is the "official" method, the latter will also show you if the package is installed (the repo name has an "@" if it is).

2) Use $ yum info <pgk-name> to get information prior to the install and to see if it is the correct package.

3) $ man yum

You can run all of the above commands as a user, you do not need to be root for them.

User avatar
TrevorH
Site Admin
Posts: 33220
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: download manager

Post by TrevorH » 2017/04/18 19:40:16

Actually just yum list wget should work.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

MartinR
Posts: 714
Joined: 2015/05/11 07:53:27
Location: UK

Re: download manager

Post by MartinR » 2017/04/19 09:38:51

Trevor is quite correct if you know exactly what the package is called. Personally I tend to use searching and grepping first in case the name is not quite right (not uncommon with my memory) but YMMV.
Last edited by MartinR on 2017/04/19 10:06:34, edited 1 time in total.

User avatar
TrevorH
Site Admin
Posts: 33220
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: download manager

Post by TrevorH » 2017/04/19 09:54:11

The problem is that yum search is fairly braindead and often doesn't even find packages where the search string occurs. I usually use yum list \*string\* to list packages that contain "string" as it's more reliable.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

MartinR
Posts: 714
Joined: 2015/05/11 07:53:27
Location: UK

Re: download manager

Post by MartinR » 2017/04/19 10:06:11

Thanks Trevor, that trick seems to give the same result as the grep method and is a bit neater. You learn something new every day. :)

hunter86_bg
Posts: 2019
Joined: 2015/02/17 15:14:33
Location: Bulgaria
Contact:

Re: download manager

Post by hunter86_bg » 2017/04/19 12:26:33

When you know the command's (or file's) name , you can easily find which package provides it via :

Code: Select all

yum whatprovides */wget
The */ is regex,but if you know the whole path then you can use the:

Code: Select all

yum whatprovides /usr/bin/wget

User avatar
TrevorH
Site Admin
Posts: 33220
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: download manager

Post by TrevorH » 2017/04/19 13:11:01

You need to quote the regexp or bash will expand it for you. Use yum provides '*/wget' not */wget.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

Post Reply