Mount and read from NTFS partitions on Linux -- Fedora Core 5
Wed, 06/14/2006 - 22:24 — sandip-
Download the specific kernel module rpm from linux-ntfs.org .
You can check the currently installed kernel version using `uname -rm` .
Install via:
# rpm -ivh kernel-module-ntfs-*.rpmCheck the partitions to be mounted:
# fdisk -l | grep NTFS
Note: If using a dual boot, then windows is normally installed in the first partition, "/dev/hda1".
The listed NTFS partition can be mountable after a restart via:# mount -r -o umask=0222 -t ntfs /dev/hda1 /mnt/ntfsFor automated mounts during startup, add the below line in "/etc/fstab" .
/dev/hda1 /mnt/ntfs ntfs ro,defaults,umask=0222 0 0
eBox Installation and Configuration
Wed, 06/14/2006 - 16:24 — david23eBox management tool will effectively and easily help you managing the advanced services for your corporate network.
eBox is a framework for the development and deployment of network services in small and medium-sized networks, offering a simplified graphical interface to non expert users. It can be set up as a gateway, having some extra features over a usual router.
- david23's blog
- Login or register to post comments
Make free calls with Linux and Skype
Wed, 06/07/2006 - 18:47 — sandipSkype currently offers free calls within the US and Canada. I was able to seemlessly install and use it on Fedora Core 5 using the dynamic binary which requires Qt3.2 or greater.
Below is a quick install process:
Download and install the dynamic binary as below:
$ wget http://download.skype.com/linux/skype-1.2.0.18.tar.bz2 # tar -C /opt -xvjf /path/to/skype-1.2.0.18.tar.bz 2 # ln -s /opt/skype-1.2.0.18 /opt/skype # ln -s /opt/skype/skype /usr/bin/skype $ cp /opt/skype/skype.desktop ~/Desktop
Once installed, you should be able to click on the desktop launcher icon and run Skype.
Enjoy the free calls!!
- sandip's blog
- Login or register to post comments
Quick and Easy Mplayer Installation on Fedora Core 5 via Yum...
Tue, 06/06/2006 - 10:37 — sandipMplayer is a movie player that plays most multimedia formats supported by many native and binary codecs. You can watch Video CD, SVCD, DVD, 3ivx, DivX 3/4/5 and even WMV and QuickTime movies on Linux.
-
FC5 rpms for mplayer are available at greysector.net
Set up yum to use greysector repository:
# cat <<EOF > /etc/yum.repos.d/greysector.reImport the GPG Key:po [greysector] name=Grey Sector RPMs for Fedora Core $releasever - $basearch baseurl=http://rpm.g reysector.net/yum/$releasever/ $basearch/ #mirrorlist=http:// rpm.greysector.net/yum/mirrorl ist-$releasever gpgkey=http:// rpm.greysector.net/greysector- pubkey.txt enabled=0 [greysec tor-all] name=Grey Sector RPMs for all Fedora Core releases - $basearch baseurl=http://rpm.g reysector.net/yum/all/$basearc h/ #mirrorlist=http://rpm.grey sector.net/yum/mirrorlist-all gpgkey=http://rpm.greysector.n et/greysector-pubkey.txt enabl ed=0 EOF
# rpm --import http://rpm.greysector.net/greyUse yum to install or update the current rpms:sector-pubkey.txt
# yum --enablerepo=greysector* install mplayer*You can selectively list the mplayer rpms and install the ones you want:
# yum --enablerepo=greysector* list mplayer* # yum --enablerepo=greysector* install mplayer mplayer-gui mplayerplug-in mplayer-codecs mplayer-codecs-extraThe required ones are mplayer, mplayerplug-in and mplayer-codecs.
Detailed Bacula Network Backup Implementation Guide
Tue, 06/06/2006 - 08:18 — david23This tutorial explains how to install and configure bacula network backup.
Bacula is a set of computer programs that permits you (or the system administrator) to manage backup, recovery, and verification of computer data across a network of computers of different kinds. Bacula can also run entirely upon a single computer, and can backup to various types of media, including tape and disk.
In technical terms, it is a network Client/Server based backup program. Bacula is relatively easy to use and efficient, while offering many advanced storage management features that make it easy to find and recover lost or damaged files. Due to its modular design, Bacula is scalable from small single computer systems to systems consisting of hundreds of computers located over a large network.
- david23's blog
- Login or register to post comments
- Read more
Lomboz Eclipse on Linux -- Fedora Core 5
Sun, 06/04/2006 - 14:02 — sandipLomboz is an open source and free J2EE development environment built on the Eclipse open source platform and the Web Tools Platform (WTP) projects.
-
Download and install the latest java sdk.
# cd /usr/local # sh /path/to/jdk-1_5_0_07-linux-i5Download and install the Eclipse SDK:86.bin # ln -s /usr/local/jdk-1_5_0_07 /usr/local/java # ln -s /usr/local/java/bin/java /usr/bin/java # ln -s /usr/local/java/bin/javac /usr/bin/javac
$ wget http://download.eclipse.org/ecDownload and install Lomboz and prerequisites all in one package:lipse/downloads/drops/R-3.1.2- 200601181600/eclipse-SDK-3.1.2 -linux-gtk.tar.gz # tar -C /opt -xvzf eclipse-SDK-3.1.2-linux-gtk.ta r.gz # chown -R root:root /opt/eclipse
$ wget http://download.forge.objectweb.org/lomboz/lomboz-wtp-emf-ge f-jem-3.1.2.zip # cd /opt # unzip /path/to/lomboz-wtp-emf-gef-je m-3.1.2.zip
Note: Say "yes" to any prompt to replace existing file while unzipping.
Start lomboz eclipse:$ /opt/eclipse/eclipse
- sandip's blog
- Login or register to post comments
- Read more
Complete Debian linux server setup Guide
Sat, 06/03/2006 - 10:55 — david23Installation,FTP Server Setup,Webserver Setup,Samba Server Setup,Database Server Setup,time clock sync server,Mail Server Configuration,VNC Server setup,Proxy Server Setup,SSH Server Setup,tftp Server Setup,DHCP Server Setup,IPtables Configuration,DNS Server Setup,Firewalls configuration,Backup configuration
- david23's blog
- Login or register to post comments
Deleting corrupt DOS files
Tue, 05/09/2006 - 22:58 — sandipI recently tried to resize my external usb drive partition which failed on me due to a corrupt file in the partition. The file could not be deleted or moved.
I used dosfsck which comes with dosfstools rpm. Installed it and ran `dosfsck -av /dev/sda1` on the unmounted drive, which automatically fixed the corrupt files. I was then able to resize the partition with the parted tool.
More on how to resize with parted to follow...
- sandip's blog
- Login or register to post comments
Minimum RPM packages required for Gnome graphical display on Cent OS 4.3
Mon, 05/08/2006 - 22:37 — sandipBelow are the minimum RPM packages required that will also install all dependencies for Gnome Graphical display to be working on Cent OS 4.3:
# yum -y install xorg-X11 system-config-display gdm xterm gnome-desktop gnome-session
Run `system-config-display` to generate the "xorg.conf" file which will be saved to "/etc/X11/xorg.conf".
Set the runlevel to 5 in "/etc/inittab" and reboot.
- sandip's blog
- Login or register to post comments
Atheros AR5005G 802.11abg NIC on Cent OS 4.3
Thu, 05/04/2006 - 22:25 — sandipInstall the RPM file madwifi-*.i386.rpm (or x86_64 respectively) plus the RPM kernel module packages (kmdl) appropriate for your kernel version and architecture, madwifi-kmdl-*.rpm and madwifi-hal-kmdl-*.rpm.
Use `uname -r` to determine which kmdl you need to download. If you use a depsolver like smart/yum/apt, all you have to do is point it to ATrpms and use
# smart install madwifi madwifi-kmdl-`uname -r`
Replace smart with yum or apt as appropriate. Note that you will have to install a new pair of madwifi*-kmdl packages for each kernel update, as the depsolvers aren't yet capable to automate this.
Read up more details at madwifi.org
You can download the respective rpms from http://atrpms.net/dist/el4/mad
# rpm -ivh madwifi*.rpm
After you have installed madwifi, reboot and the HAL (Hardware Abstraction Layer) deamon should automatically pick the card up for configuration. If you skip this configuration on boot, you can set up networking as below: