How To Import Winamp Equalizer Preset Into Linux Audio Players Like Audacious, XMMS, etc


Linux users always miss out on one feature that their Windows counterparts enjoy while listening to music. Most of the time, while listening to music using music players like Audacious, BMP, XMMS, etc in Linux, users misses out the equalizer presets that is present in most of the Windows music players like of Winamp, iTunes, Windows Media Player, etc.
For any die-hard music-aficionado who loves to listen to music and cannot compromise with quality, can never forgive a player that doesn’t comes with an equalizer preset. If you are a music lover who don’t likes to compromise with music and likes to have equalizer presets for fine tuning his music, there’s a simple trick to import the Winamp equalizer presets into your Audacious, BMP, XMMS, etc Linux music players.
Simply follow the steps below:
Run the following commands one by one in your terminal and you will have the equalizer presets of Winamp in your favorite Linux music player.
terminal
Step 1Download the Winamp equalizer presets using the following command in your terminal:

wget http://www.beastwithin.org/users/wwwwolf/code/xmms/winamp_presets.gz
Step 2: Import the downloaded Winamp equalizer presets into Audacious, BMP, and XMMS respectively using the commands as follows:

gunzip -c winamp_presets.gz > ~/.config/audacious/eq.preset
gunzip -c winamp_presets.gz > ~/.bmp/eq.preset
gunzip -c winamp_presets.gz > ~/.xmms/eq.preset
winamp equalizer presets imported in audacious
In case you don’t need all of them or haven’t installed any of the above mentioned player then you don’t have to run the command for that player. For example, if you don’t have BMP installed in your machine, then you don’t have to execute the command gunzip -c winamp_presets.gz > ~/.bmp/eq.preset into your terminal.

Install Jdownloader in Ubuntu 10.10/10.04/9.10 using Ubuntu PPA

JDownloader is open source platform independent and written completely in Java. It simplifies downloading files from One-Click-Hosters like Rapidshare.com or Megaupload.com - not only for users with a premium account but also for users who don’t pay. It offers downloading in multiple paralell streams, captcha recognition, automatical file extraction and much more. Of course, JDownloader is absolutely free of charge. Additionally, many “link encryption” sites are supported - so you just paste the “encrypted” links and JD does the rest. JDownloader can import CCF, RSDF and the new DLC files.
Install Jdownloader in Ubuntu 10.10/10.04/9.10




Open the terminal and run the following command
sudo add-apt-repository ppa:jd-team/jdownloader
sudo apt-get update 
sudo apt-get install jdownloader

compiz-fusion-plugins-extra

This is the full list of compiz packages I have installed (Intrepid):

compiz
compiz-core
compiz-dev
compiz-fusion-plugins-extra
compiz-fusion-plugins-main
compiz-fusion-plugins-unsupported
compiz-gnome
compiz-gtk
compiz-plugins
compiz-wrapper
compizconfig-backend-gconf
compizconfig-settings-manager
emerald
gnome-compiz-manager
libcompizconfig0
libemeraldengine0
libgnome-compiz-manager0
python-compizconfig

Ubuntu Tips And Tricks : Compiz Fusion

Compiz Fusion is available as a separate Windows Manager, to allow advanced desktop effects such as the rotating cube desktop. Many Ubuntu users choose to run Compiz, which is quite fast in Ubuntu. 
Install:

sudo apt-get install compiz compizconfig-settings-manager compiz-fusion-plugins-main
compiz-fusion-plugins-extra emerald librsvg2-common
To change to Compiz as the Window Manager:
System -> Preferences -> CompizConfig Settings Manager
Note: You must logout and log back in for the change to take effect.

Fusion Icon

Fusion Icon is a tray icon that allows you to easily switch between window managers, window decorators, and gives you quick access to the Compiz Settings Manager. This allows quick toggling of 3-D desktop effects (that may not be compatible with some applications).

sudo apt-get install fusion-icon
Applications -> System Tools -> Compiz Fusion Icon
You can then easily access CompizConfig Settings Manager from the icon.

 

Rotate the Compiz Cube


Set the CompizConfig Settings Manager to enable the "Desktop Cube" and "Rotate Cube" and "Viewport Switcher" options. Click on the icon for each to customize settings. For example, to change the appearance of the cube, click on the Desktop Cube icon to access its settings. You can set the hotkey buttons for rotating the cube in the "Viewport Switcher" settings. Otherwise, hold down the Ctrl+Alt+Left mouse button and drag the mouse (or touchpad) the direction you want to rotate the cube.
Remember, the cube rotates between desktops. It's not a cube unless you have at least 4 desktops running. You will not get a cube if you are only using 2 desktops (you will get a "plate"). You can still rotate the sides of the plate, of course, but it will not be a cube. (Recent users from the Windows OS may have no experience with the concept of simultaneous desktops, but they are nice once you learn how to use them).
When running Compiz fusion as the Windows Manager, you must change the default number of desktops from within CompizConfig Settings Manger. To enable 4 desktops:
CompizConfig Settings Manager -> General -> General Options -> Desktop Size -> Horizontal Virtual Size -> 4
When you start an application, you can assign it to any one of the 4 desktops by right-clicking the upper left corner of the application window and choosing the "To Desktop..." option. Rotating the cube shows the different desktops. You can also go to a desktop using the taskbar icon which shows the 4 desktop.

Fix Low Screen Resolution At Start UP


Step 1: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:

sudo apt-get install v86d

...a terminal window will appear. Enter your password when asked, hit the Enter key and wait for the package to be installed. The terminal window will automatically close!

Review image


Step 2: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:


gksu gedit /etc/default/grub

...enter your password when asked and hit the Enter key.

- Replace the following line (line number 9):

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

with this one:

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nomodeset video=uvesafb:mode_option=1280x1024-24,mtrr=3,scroll=ywrap"


- Replace the following line (line number 18):

#GRUB_GFXMODE=640x480

with this one:

GRUB_GFXMODE=1280x1024

The file should look like this:
Review image
Save the file and close it!


Step 3: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:

gksu gedit /etc/initramfs-tools/modules
When the text window appears, add the following line at the end of the file:

uvesafb mode_option=1280x1024-24 mtrr=3 scroll=ywrap

It should look like this:
Review image

Save the file and close it!

Step 4: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:

echo FRAMEBUFFER=y | sudo tee /etc/initramfs-tools/conf.d/splash


...a terminal window will appear for a second or two. The terminal window will automatically close!
Review image

Step 5: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:


sudo update-grub2

...a terminal window will appear. Enter your password when asked, hit the Enter key and wait for the command to finish. The terminal window will automatically close!
Review image

Step 6: Hit the ALT+F2 key combination, paste the following command and check the "Run in terminal" option:


sudo update-initramfs -u
...a terminal window will appear. Enter your password when asked, hit the Enter key and wait for the command to finish. The terminal window will automatically close!
Review image

Step 7: Reboot your computer. When the system starts, you should see a better looking Ubuntu logo!
Review image

Find Us On Facebook

Related Posts Plugin for WordPress, Blogger... Linux Directory