The other day we were toying around with filtering out the horn noises from the World Cup matches streaming from ESPN. We found some instructions dealing with Fedora but many of the packages that were recommended were not available for CentOS. One of those packages was jack-rack which can be downloaded and installed using the information below.
I always like to download packages to /usr/local/src so every package downloaded is organized in this directory in case you need to see packages you have installed in the past for any reason.
Download jack-rack From Stanford Planet CCRMA Repo:
- [root@dev src]# wget ftp://ftp.pbone.net/mirror/www-ccrma.stanford.edu/planetccrma/mirror/centos/linux/planetccrma/5/i386/jack-rack-1.4.6-3.el5.ccrma.i386.rpm
- --2010-06-16 14:55:24-- ftp://ftp.pbone.net/mirror/www-ccrma.stanford.edu/planetccrma/mirror/centos/linux/planetccrma/5/i386/jack-rack-1.4.6-3.el5.ccrma.i386.rpm
- => `jack-rack-1.4.6-3.el5.ccrma.i386.rpm'
- Resolving ftp.pbone.net... 85.14.85.4
- Connecting to ftp.pbone.net|85.14.85.4|:21... connected.
- Logging in as anonymous ... Logged in!
- ==> SYST ... done. ==> PWD ... done.
- ==> TYPE I ... done. ==> CWD /mirror/www-ccrma.stanford.edu/planetccrma/mirror/centos/linux/planetccrma/5/i386 ... done.
- ==> SIZE jack-rack-1.4.6-3.el5.ccrma.i386.rpm ... 95232
- ==> PASV ... done. ==> RETR jack-rack-1.4.6-3.el5.ccrma.i386.rpm ... done.
- Length: 95232 (93K)
- 100%[==========================================================================================>] 95,232 115K/s in 0.8s
- 2010-06-16 14:55:27 (115 KB/s) - `jack-rack-1.4.6-3.el5.ccrma.i386.rpm' saved [95232]
After downloading the jack-rack RPM from the CCRMA site you will then need to install it. Issue the below command from the /usr/local/src directory. This command includes a couple of switches that are important including the –nogpgcheck since the package is unsigned and we don’t have the GPG Key as well as the “localinstall” switch to specify that the package is being installed from a local directory instead of fetched from a yum repository.
Install jack-rack RPM On CentOS Linux:
- [root@dev src]# yum --nogpgcheck localinstall jack-rack-1.4.6-3.el5.ccrma.i386.rpm
- Loaded plugins: fastestmirror
- Setting up Local Package Process
- Examining jack-rack-1.4.6-3.el5.ccrma.i386.rpm: jack-rack-1.4.6-3.el5.ccrma.i386
- Marking jack-rack-1.4.6-3.el5.ccrma.i386.rpm to be installed
- Loading mirror speeds from cached hostfile
- * addons: mirror.anl.gov
- * base: mirror.anl.gov
- * epel: mirrors.tummy.com
- * extras: mirror.rackspace.com
- * rpmforge: apt.sw.be
- * updates: ftp.osuosl.org
- Resolving Dependencies
- --> Running transaction check
- ---> Package jack-rack.i386 0:1.4.6-3.el5.ccrma set to be updated
- --> Processing Dependency: liblrdf.so.2 for package: jack-rack
- --> Running transaction check
- ---> Package liblrdf.i386 0:0.4.0-13.el5 set to be updated
- --> Processing Dependency: libraptor.so.1 for package: liblrdf
- --> Processing Dependency: ladspa for package: liblrdf
- --> Running transaction check
- ---> Package ladspa.x86_64 0:1.12-8.el5 set to be updated
- ---> Package raptor.i386 0:1.4.16-2.el5 set to be updated
- --> Finished Dependency Resolution
- Dependencies Resolved
- ====================================================================================================================================
- Package Arch Version Repository Size
- ====================================================================================================================================
- Installing:
- jack-rack i386 1.4.6-3.el5.ccrma /jack-rack-1.4.6-3.el5.ccrma.i386 175 k
- Installing for dependencies:
- ladspa x86_64 1.12-8.el5 epel 37 k
- liblrdf i386 0.4.0-13.el5 epel 27 k
- raptor i386 1.4.16-2.el5 epel 193 k
- Transaction Summary
- ====================================================================================================================================
- Install 4 Package(s)
- Update 0 Package(s)
- Remove 0 Package(s)
- Total size: 432 k
- Is this ok [y/N]: y
- Downloading Packages:
- Running rpm_check_debug
- Running Transaction Test
- Finished Transaction Test
- Transaction Test Succeeded
- Running Transaction
- Installing : ladspa 1/4
- Installing : raptor 2/4
- Installing : liblrdf 3/4
- Installing : jack-rack 4/4
- Installed:
- jack-rack.i386 0:1.4.6-3.el5.ccrma
- Dependency Installed:
- ladspa.x86_64 0:1.12-8.el5 liblrdf.i386 0:0.4.0-13.el5 raptor.i386 0:1.4.16-2.el5
- Complete!
Chances are there will be some dependencies that are installed as well. If you don’t have the proper repositories for the dependencies then consider installing the CCRMA repository by reading this article.