•
How is the speed of yum compared to APT-RPM?
yum automatically checks the repository every time you perform a command, except when run in shellmode, while APT only checks it when you run '
apt-get update
' manually. This causes it to appear slower than it is. If you want yum to run from cache instead of checking the repositories, run'
yum -C <command>
'. See the man page for details.yum now uses sqlite for its back-end database by default. This results in an edge in speed over older versions of yum. Beginning with Fedora Core 4, yum contains significant improvements that make it faster and more capable than older versions.
What about other advanced features like those in APT that aren't available inyum?
The yum-utils package (available in the Fedora Extras repository) has various additional utilities that mightprovide you with the additional features you want. Seth Vidal hasa blog explaining the various tools
available in it.The following command installs the package from the Fedora Extras repository. If you are using FedoraCore 4 or newer, this repository is configured and available by default. FC3 users should refer to theUsingExtras page.
•
yum install yum-utils
•
You will need to have root privileges to use these commands.Additional tools are in the works.
Leave a Comment