Download Actions preference in Firefox
Mon, 10/09/2006 - 09:47 — wizapI was having a hard time getting m3u (MP3 audio -- streamed) files open up in my external xmms audio player instead of the the default mplayerplug-in and found out that firefox by default hides the plugins without any extensions, as the mp3 playlist was being created dynamically with php and the mime-type fed via the header.
The work-around was to disable the default firefox config settings and change the option for streamed mp3 audio to be opened with xmms instead.
The steps are outlined below:
-
Type "about:config" on the address bar to get to firefox config settings.
Do a filter search for "hide_plugins" and double click on "browser.download.hide_plugins
Open up "Edit > Preferences", go to the "Downloads" area and click on "View & Edit Actions".
It should now list all the "File Type". Do a search for audio and change the "MP3 audio (streamed)" to open up in the external xmms player.
See other posts on Firefox.
- wizap's blog
- Login or register to post comments
- Read more
Tab pages in vim
Thu, 10/05/2006 - 10:56 — sandipWindow tabs are everywhere and you will find this in the curret version of vim too, which as of this writing is 7.0.042-0.fc5 on fedora-core-5.
Below are notes on how you can quickly navigate between open tabs:
-
Open several fies for editing in seperate tab pages:
$ vi -p file1 file2 file3...Goto next tab:
gt
or
:tabnGoto previous tab:
gT
or
:tabpGot to a numbered tab where "#" is a number:
#gt
or
:#tabnRewind to the first tab:
:tabrOpen new tab page. Optionally you can provide a filename:
:tabnew [filename]Edit an existing file:
:tabe {filename}Split the tab page:
:tab splitClose all other tab pages:
:tabo[!]Close current tab page:
:tabc[!]To get help using tabpages:
:tab help tabpages
See other related posts on vi.
- sandip's blog
- Login or register to post comments
Install .rpm Files in Debian and Ubuntu
Thu, 10/05/2006 - 03:27 — david23Some time you might find some applications are having only .rpm files but you want a .deb package for your debian,Ubuntu and other debian derived ditributions.If you can’t find .deb debian package in any of the debian,ubuntu repositories or elsewhere, you can use the alien package converter to install the .rpm file.
- david23's blog
- Login or register to post comments
Running Internet Explorer in Debian and ubuntu Linux
Fri, 09/29/2006 - 10:58 — david23No clicks needed. No boring setup processes. No Wine complications. Just one easy script and you’ll get three IE versions to test your Sites. And it’s free and open source.This may be very helpful for software developers and web developers to test their applications.
- david23's blog
- Login or register to post comments
Kubuntu 6.06 LTS Installation Walkthrough with Screenshots
Tue, 09/26/2006 - 04:41 — david23Kubuntu is a user friendly operating system based on KDE, the K Desktop Environment. With a predictable 6 month release cycle and part of the Ubuntu project, Kubuntu is the GNU/Linux distribution for everyone.
- david23's blog
- Login or register to post comments
Swap fails to mount at boot -- resolved!
Sat, 09/23/2006 - 21:38 — sandipAt some point of my regular yum updates, I noticed there was no swapspace being mounted at boot time. I was however able to manually mount it after booting via, `swapon -a`.
The failure was caused due to SELinux policy and "/etc/fstab" file context settings. I was getting the below message in my logs:
Sep 17 12:12:36 localhost kernel: audit(1158509512.509:51): avc: denied { read } for pid=1429 comm="swapon" name="fstab" dev=dm-0 ino=899639 scontext=system_u:system_r:fsadm_t:s0 tcontext=system_u:object_r:fil e_t:s0 tclass=file
I found my solution in the SELinux FAQ
- sandip's blog
- Login or register to post comments
- Read more
Debian Network Utilities and tools With Examples and man pages
Mon, 09/18/2006 - 03:40 — david23This is the list of debian network utilities and tools for administrators and users to check the network related traffic, monitor network.This includes installation of each package with man pages.This full list devided in to two parts which is part1 network tools and part2 network tools
- david23's blog
- Login or register to post comments
Debian etch beta 3 graphical mode installation with screenshots
Mon, 09/11/2006 - 03:56 — david23Debian etch beta3 installation using graphical interface this is really nice installation walkthrough with each step
screenshots.This is new feature in debian upcoming release version called etch.This article contains nearly 50 images of this installation process.
- david23's blog
- Login or register to post comments
IEs4Linux -- Internet Explorer for Linux
Fri, 09/01/2006 - 12:46 — sandipTwo reasons why you should get IEs4Linux:
-
You are a web-designer using Linux and want to test your sites using Internet Explorer as your visitors are predominantly IE users.
You need the latest and greatest flash player with your browser to view sites like ESPN, MetaCafe etc... The latest version of Flash is 9 which is only available to Windows and Macs whereas on the Linux side we have been left behind with 7.
Below is how I got it up and running on Fedora Core 5:
-
Install cabextract and wine if you don't have it already:
# yum --enablerepo=extras install cabextract wineDownload and install IEs4Linux:
$ wget http://www.tatanka.com.br/ies4Internet Explorer can now be run via the shortcut icon created on the desktop.linux/downloads/ies4linux-2.0. 1.tar.gz $ tar -xvzf ies4linux-2.0.1.tar.gz $ cd ies4linux-2.0.1 $ ./ies4linux
- sandip's blog
- Login or register to post comments
- Read more
Install common Windows fonts on Linux
Thu, 08/31/2006 - 10:19 — sandipI have built Microsofts' common true type core fonts for the web and can be downloaded from here.
Below are the steps I took to build the rpm package on FC5:
-
Install cabextract.
# yum --enablerepo=extras install cabextractSetup your rpm build environment if you have not done so already. Login as rpmbuild.
# su - rpmbuildDowload the spec file.
$ cd rpm/SPECS $ wget http://corefonts.sourceforge.nBuild the rpm.et/msttcorefonts-2.0-1.spec
$ rpmbuild --bb msttcorefonts-2.0-1.specInstall the corefonts and restart xfs as root.
# rpm -ihv /path/to/msttcorefonts-2.0-1.noarch.rpm # service xfs restart
If you are looking for more info visit, corefonts.sourceforge.net .
- sandip's blog
- Login or register to post comments