ogg to mp3 audio file format conversion
Tue, 07/26/2005 - 07:48 — sandip"SoX" (Sound eXchange) is a command line program that can convert most popular audio files to most other popular audio file formats. It can optionally change the audio sample data type and apply one or more sound effects to the file during this translation.
Fedora 3 does not come with "sox" compiled with mp3 support. You will need to download the source and recompile for mp3 support and install it. Else you can grab a prebuilt rpm if you are looking for a quick and easy way out. Download mp3 and lame enabled sox via FreshRPMS.net and install it:
iPod Shuffle with Linux Fedora Core 3
Fri, 07/22/2005 - 13:30 — sandip-
FC3 automagically recognizes the iPod and mounts it to "/media/IPOD". Alternately, you could create a mount point and mount it manually:
# mkdir /mnt/ipod # mount -t vfat /dev/sda1 /mnt/ipod
or automate it in the next reboot via the fstab entry:
/dev/sda1 /mnt/ipod vfat sync,user,noauto,umask=000 0 0For a friendly and graphical environment download and install GTKpod. For Command Line Interface download and install GNUpod which is covered in the notes below.
SOFIA project - Sharing of Free Intellectual Assests
Thu, 07/14/2005 - 15:56 — sandipSOFIA initiative is to support and advance education by making high-quality content freely available on the Web for learners and faculty across the nation and the world. Modeled after MIT’s OpenCourseWare Initiative, the Sofia initiative encourages the publication and free exchange of community college-level course materials on the World Wide Web.
Check out the course gallery for some excellent study material.
FREE Ubuntu Linux CDs shipped to your door !!
Wed, 07/13/2005 - 09:47 — sandipIf you have had a hard time downloading linux distros due to slow internet connection. Here is an alternative in trying out a Linux distro. The Ubuntu team will send you CDs at no charge, for you to install and share. They cover the cost of shipping the CDs to you as well.
Get it here: shipit.ubuntulinux.org
Get the FAQs here: Ubuntu CDs FAQs
cwISPy - Billing Management System for ISPs...
Sat, 07/09/2005 - 19:00 — sandipThe MoviX Project
Tue, 06/28/2005 - 20:33 — sandipeMoviX - a micro (7MB) Linux distro meant to be embedded in a CD together with all video/audio files. A CD burned with eMoviX will be able to boot and play automagically all of its files with MPlayer. Supported formats are AVI (in particular DivX & XviD formats), MPEG, QuickTime, WMV, ASF, MP3, Ogg, and in general everything supported by MPlayer.
BitTorrent downloads on headless machines via CLI
Sat, 06/25/2005 - 08:12 — sandip-
Download and install BitTorrent.
The current version 4.0.2 of BitTorrent requires that you use python2.3 or above else you will not be able to import the modules.
I got fedora core 1 rpms from python.org and installed via `rpm -ivh python2.3-2.3.4-3pydotorg.i386
$ python2.3 /usr/bin/btdownloadheadless.pydownload.torrent --save_in /path/to/directory
You could also use "/usr/bin/btdownloadcurses.py"
$ python2.3 /usr/bin/btdownloadheadless.py-h
Network File System - server and client setup on Fedora
Sun, 06/19/2005 - 21:18 — sandipNFS Server:
-
You will need "nfs-utils" so `up2date --install nfs-utils` if you don't already have it.
Start "portmapper" first - `service portmap start`.
Setup the exports file with the directory, hosts and permissions for sharing.
To export the external usb storage drive to everyone on the local subnet, I have the following:
/mnt/usbdisk 192.168.0.0/255.255.255.0(rw)
This entry allows every machine from the subnet 192.168.0.0 to access the NFS share over the network. After having edited the "/etc/exports" file all you have to do is start the NFS server - `service nfs start` .
Check the status with - `rpcinfo -p` .Note: If you are concerned about security edit "/etc/hosts.allow" and "/etc/hosts.deny" to specify which computers on the network can use services on your machine.
NFS Client:
-
Check that the nfs module is loaded first - `grep nfs /proc/filesystems` .
If nothing comes up then load the module with - `modprobe nfs` .
Start "portmapper" - `service portmap start` .
Mount the network file system with - `mount -t nfs nfs_server:/mnt/usbdisk /mnt/nfs_usbdisk` .
If may take a while. Verify with `mount` after .
References:
Fried your Master Boot Record?
Sat, 06/11/2005 - 18:05 — sandipNo worries! You are using GRUB (GRand Unified Bootloader) aren't you?
You should atleast know where your "/boot" partition is installed.
-
Here is my drive setup and "/boot" is setup in "hda3".
# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup00-LogVol00 18G 4.3G 13G 26% / /dev/hda3 99M 19M 76M 20% /boot none 506M 0 506M 0% /dev/shm
# fdisk -l Disk /dev/hda: 60.0 GB, 60011642880 bytes 255 heads, 63 sectors/track, 7296 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes
Howto check and install missing perl modules...
Fri, 06/10/2005 - 14:20 — sandip-
Check if module is installed. Errors mean missing module.
# perl -MModule::Name -e 1See documentation of the module if installed.
# perldoc Module::NameOpen CPAN shell:
# perl -MCPAN -e shellTo reconfigure the shell if needed.
cpan>o conf initInstall an available module.
cpan> install Module::NameForce install if test fails.
cpan> force install Module::NameTo manual install perl modules.
# perl Makefile.PL # make # make test # make install