<?xml version="1.0" encoding="ISO-8859-1"?>
<rss version="2.0">
	<channel>
		<title>am3n&#039;s linux experiences</title>
		<link>http://www.am3n.net/linux/index.php</link>
		<description><![CDATA[part of www.am3n.net]]></description>
		<copyright>Copyright 2012, am3n</copyright>
		<managingEditor>am3n</managingEditor>
		<language>en-US</language>
		<generator>SPHPBLOG 0.4.7.1</generator>
		<item>
			<title>Install and Configure Script for Fedora Core 4 Desktop</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060306-164547</link>
			<description><![CDATA[I have made a script based on instruction on <a href="http://stanton-finley.net/fedora_core_4_installation_notes.html" target="_blank" >http://stanton-finley.net/fedora_core_4 ... notes.html</a>  but I only take several applications below to be installed and configured on my Fedora Core 4 Desktop. Those applications are:<br /><br />true type fonts 					<br />fedora extras (numlockx, x-screensaver) 		<br />yumex							<br />java 							<br />flash 							<br />realplayer						<br />adobereader  						<br />xine							<br />totem-xine						<br />xmms						<br />x3270						<br />gftp 							<br />thunderbird 						<br />mc 							<br />system-config-samba 					<br />samba 		<br />avg antivirus<br />smb4k<br />rar handling for archive manager<br />setting vino for remote desktop<br /><br />And the codes is below:<br />					<br /><code><br />#Script Name: ic.desktop.sh<br />#install and configure and also enhance Fedora Core 4 Desktop<br />#start creating date: 3 March 2006<br />#end date after testing: 6 March 2006<br />#it should be run as root otherwise you will get error<br /><br />mkdir -p /root/fcupdate/apps<br />cd /root/fcupdate/apps<br /><br />#installing True Type Fonts<br />echo &quot;installing true type fonts...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/msttcorefonts-1.3-4.noarch.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... noarch.rpm</a><br />rpm -ivh msttcorefonts-1.3-4.noarch.rpm<br /><br />#Install and configure Thunderbird for default email client<br />echo &quot;Install and configure Thunderbird for default email client&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/thunderbird-1.0.7-1.1.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />yum -y localinstall thunderbird-1.0.7-1.1.fc4.i386.rpm<br />wget <a href="http://10.10.105.105/software/fedora/extras/redhat-email.desktop" target="_blank" >http://10.10.105.105/software/fedora/ex ... il.desktop</a><br />cp --reply=yes redhat-email.desktop /usr/share/applications<br /><br />#installing desktop utilities<br />#numlock on<br />echo &quot;setting numlock on...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/numlockx-1.0-4.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />rpm -ivh numlockx-1.0-4.fc4.i386.rpm<br /><br />#screensaver<br />echo &quot;installing screensaver...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/xscreensaver-extras-4.21-4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xscreensaver-gl-extras-4.21-4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />rpm -ivh xscreensaver-extras-4.21-4.i386.rpm<br />rpm -ivh xscreensaver-gl-extras-4.21-4.i386.rpm<br /><br />#yumex graphical frontend for yum<br />echo &quot;installing yumex...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/yumex-0.44-1.0.fc4.noarch.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... noarch.rpm</a><br />rpm -ivh yumex-0.44-1.0.fc4.noarch.rpm<br /><br />#installing flash support<br />echo &quot;installing flash support...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/flash-plugin-7.0.61-1.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 1.i386.rpm</a><br />rpm -ivh flash-plugin-7.0.61-1.i386.rpm<br /><br />#installing utilites<br />echo &quot;installing utilites...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/gftp-2.0.18-2.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 2.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/mc-4.6.1a-4.FC4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />rpm -ivh gftp-2.0.18-2.i386.rpm<br />rpm -ivh mc-4.6.1a-4.FC4.i386.rpm<br /><br />#installing x3270<br />echo &quot;installing x3270 - emulator for TN3270...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/x3270-3.3.4-4.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/x3270-x11-3.3.4-4.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />rpm -ivh x3270-3.3.4-4.fc4.i386.rpm<br />rpm -ivh x3270-x11-3.3.4-4.fc4.i386.rpm<br /><br />#installing samba server and configuration tool<br />echo &quot;installing samba server and configuration tool&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/samba-3.0.14a-2.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 2.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/system-config-samba-1.2.31-1.noarch.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... noarch.rpm</a><br />rpm -ivh samba-3.0.14a-2.i386.rpm<br />rpm -ivh system-config-samba-1.2.31-1.noarch.rpm<br /><br />#installing xine and totem-xine a multimedia video player<br />echo &quot;installing xine and totem-xine a multimedia video player&quot;<br />mkdir xine<br />cd xine<br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/aalib-1.4.0-5.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/all-20050412.tar.bz2" target="_blank" >http://10.10.105.105/software/fedora/ex ... 12.tar.bz2</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/libXvMCW-0.9.3-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/libdvdcss-1.2.9-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/libfame-0.9.1-8.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/totem-xine-1.0.4-0.lvn.3.4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/xine-0.99.4-2.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/xine-lib-1.1.1-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xine/xine-skins-1.10-2.2.fc4.rf.noarch.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... noarch.rpm</a><br />yum -y remove totem<br />rpm -Uvh *.rpm<br />tar xvfj all-20050412.tar.bz2<br />cd all-20050412<br />mkdir /usr/local/lib/codecs/<br />cp *.* /usr/local/lib/codecs/<br />chmod 755 /usr/local/lib/codecs/*<br />mkdir /usr/lib/win32<br />cp /usr/local/lib/codecs/* /usr/lib/win32<br />cd /root/fcupdate/apps<br /><br />#installing xmms a multimedia sound player<br />echo &quot;installing xmms a multimedia sound player&quot;<br />mkdir xmms<br />cd xmms<br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/faad2-2.0-5.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/id3lib-3.8.3-12.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/libsamplerate-0.1.2-3.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/libsndfile-1.0.12-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/mikmod-3.1.6-35.FC4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-1.2.10-19.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-aac-2.0-5.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-cdread-0.14-6.a.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... a.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-crossfade-0.3.10-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-flac-1.1.2-25.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-gtk-playlist-2.0-0.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-mp3-1.2.10-14.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-skins-1.2.10-15.noarch.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... noarch.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/xmms/xmms-wma-1.0.5-1.2.fc4.rf.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... f.i386.rpm</a><br />rpm -Uvh *.rpm<br />cd /root/fcupdate/apps<br /><br />#installing Adobe Reader<br />echo &quot;installing Adobe Reader&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/adobereader/compat-libstdc++-33-3.2.3-47.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/adobereader/AdobeReader_enu-7.0.1-1.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 1.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/adobereader/mozplugger-1.7.1-4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/adobereader/mozpluggerrc" target="_blank" >http://10.10.105.105/software/fedora/ex ... zpluggerrc</a><br />rpm -Uvh compat-libstdc++-33-3.2.3-47.fc4.i386.rpm<br />rpm -Uvh AdobeReader_enu-7.0.1-1.i386.rpm<br />rpm -Uvh mozplugger-1.7.1-4.i386.rpm<br />cp --reply=yes mozpluggerrc /etc/<br />cd /usr/lib/mozilla/plugins<br />ln -s /usr/local/Adobe/Acrobat7.0/Browser/intellinux/nppdf.so .<br />cd /root/fcupdate/apps<br /><br />#installing realplayer<br />echo &quot;installing realplayer...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/RealPlayer10GOLD.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 10GOLD.rpm</a><br />rpm -ivh RealPlayer10GOLD.rpm<br />yum -y remove HelixPlayer<br />cp /usr/local/RealPlayer/share/realplay.desktop /usr/share/applications/<br /><br />#installing java<br />echo &quot;installing java...&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/jre-1_5_0_06-linux-i586.bin" target="_blank" >http://10.10.105.105/software/fedora/ex ... x-i586.bin</a><br />cp jre-1_5_0_06-linux-i586.bin /opt<br />cd /opt<br />chmod +x jre-1_5_0_06-linux-i586.bin<br />echo &quot;please press space button then type yes followed by enter&quot;<br />sleep 3<br />./jre-1_5_0_06-linux-i586.bin<br />ln -s /opt/jre1.5.0_06/plugin/i386/ns7/libjavaplugin_oji.so /usr/lib/mozilla/plugins/libjavaplugin_oji.so<br />cd /root/fcupdate/apps<br />wget <a href="http://10.10.105.105/software/fedora/extras/java.sh" target="_blank" >http://10.10.105.105/software/fedora/extras/java.sh</a><br />cp --reply=yes java.sh /etc/profile.d<br />source /etc/profile.d/java.sh<br />/usr/sbin/alternatives --install /usr/bin/java java /opt/jre1.5.0_06/bin/java 2<br />echo &quot;please press 2 then hit enter&quot;<br />sleep 3<br />/usr/sbin/alternatives --config java<br /><br />#installing avg antivirus for linux<br />echo &quot;installing and configuring avg antivirus for linux&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/compat-libstdc++-296-2.96-132.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/avglinux-7.1-23_free_rh_avi0676.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 6.i386.rpm</a><br />rpm -ivh compat-libstdc++-296-2.96-132.fc4.i386.rpm<br />rpm -ivh avglinux-7.1-23_free_rh_avi0676.i386.rpm<br />chmod o+rx /opt/grisoft/avg7/bin/avgupdate<br />chmod o+w /opt/grisoft/avg7/data<br />chmod -R o+w /opt/grisoft/avg7/var/run<br />chmod -R o+w /opt/grisoft/avg7/var/update<br /><br />#installing smb4k a samba share mounter application<br />echo &quot;installing smb4k a samba share mounter application&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/smb4k-0.6.8-1.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />yum -y install kdelibs dmidecode kdebase lm_sensors xorg-x11-xdm<br />rpm -ivh smb4k-0.6.8-1.fc4.i386.rpm<br />chmod +s /usr/bin/smbmnt<br />chmod +s /usr/bin/smbumount<br /><br />#updating Archive manager to handle rar files<br />echo &quot;updating Archive manager to handle rar files&quot;<br />wget <a href="http://10.10.105.105/software/fedora/extras/rar-3.5.1-1.2.fc4.i586.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i586.rpm</a><br />wget <a href="http://10.10.105.105/software/fedora/extras/unrar-3.5.4-1.2.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />rpm -ivh rar-3.5.1-1.2.fc4.i586.rpm<br />rpm -ivh unrar-3.5.4-1.2.fc4.i386.rpm<br /><br />#configure remote desktop<br />echo &quot;configure remote desktop&quot;<br />#run this if you are ITD Technical support which need to remote FC4 desktop<br /># yum -y install vnc<br />wget <a href="http://10.10.105.105/software/fedora/extras/setting%20remote%20desktop%20fc4.pdf" target="_blank" >http://10.10.105.105/software/fedora/ex ... %20fc4.pdf</a><br />echo &quot;...&quot;<br />echo &quot;please run these configuration to configure remote desktop&quot;<br />echo &quot;...&quot;<br />sleep 5<br />evince /root/fcupdate/apps/setting remote desktop fc4.pdf<br /><br />echo &quot;Installation and configuration complete!!!&quot;<br />echo &quot;Thank you&quot;<br />#done<br /><br /></code>]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060306-164547</guid>
			<author>am3n</author>
			<pubDate>Mon, 06 Mar 2006 09:45:47 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=03&amp;entry=entry060306-164547</comments>
		</item>
		<item>
			<title>set up OpenOffice.org to always save my files in Office format</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060302-144548</link>
			<description><![CDATA[To specify the default save format, use the Options dialog (Tools | Options from the menu). Expand the Load/Save section and click on General.<br /><br />At the bottom of the dialog, there&#039;s a section titled &quot;Standard file format.&quot; Choose a file type from the list box (for example, &quot;Text document&quot; or &quot;Spreadsheet&quot;) and then, in the dropdown list, choose the file format you want to use for that type of file.<br /><br />Office formats are available for text documents, spreadsheets and presentations. When you&#039;ve made all the changes you want, click OK to save your changes. Warning messages will appear; see &quot;When I save documents in Office format, I get a warning that formatting might be lost. What formatting is lost and what can I do about it?&quot; elsewhere in this FAQ.<br /><br />No matter what format you choose as default, you can always save a particular file in a different format by using File | Save As from the menu.]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060302-144548</guid>
			<author>am3n</author>
			<pubDate>Thu, 02 Mar 2006 07:45:48 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=03&amp;entry=entry060302-144548</comments>
		</item>
		<item>
			<title>network connection</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060302-144357</link>
			<description><![CDATA[ here&#039;s tips to ease you view current IP address (ordinary user can&#039;t use ifconfig to see it) or change your IP address (root access reqiured). note: I&#039;m using gnome 2.10 under FC4<br /><br />Right-click on a vacant space on the panel (the one that have clock),<br />then choose &quot;Add to Panel...&quot;,<br />select Network Monitor item.<br />Click Add button.<br />Right-click again on Network Monitor item that already display on panel<br />choose Move<br />and drag it next to clock<br /><br />To see current IP address<br />Right-click again on Network Monitor item that already display on panel<br />click Properties<br />and choose Support tab.<br /><br />To change current IP address<br />Right-click again on Network Monitor item that already display on panel<br />click Properties<br />click Configure button<br />enter root password if asked]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060302-144357</guid>
			<author>am3n</author>
			<pubDate>Thu, 02 Mar 2006 07:43:57 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=03&amp;entry=entry060302-144357</comments>
		</item>
		<item>
			<title>Gnome-Telnet</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060301-114112</link>
			<description><![CDATA[A very nice Graphical Interface for telnet, ssh, rlogin to other machines which remember parameters for each machines like port, username and password. Have been using it for a while and like it much rather than typing on gnome-terminal <br /><br />ssh username@machines<br /><br />and don&#039;t a have a lists of machines which I want to remote.<br /><br />gnome-telnet is available on fedora-extra repository. Make sure file /etc/yum.repos.d/fedora-extra.repo has enabled=1 option<br /><br />To install it type:<br />yum -y install gnome-telnet<br /><br /><br /><br />]]></description>
			<category>Misc</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060301-114112</guid>
			<author>am3n</author>
			<pubDate>Wed, 01 Mar 2006 04:41:12 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=03&amp;entry=entry060301-114112</comments>
		</item>
		<item>
			<title>Installing Thunderbird</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060301-105259</link>
			<description><![CDATA[You can type this command as root: yum -y thunderbird<br />but since I already downloaded before to my server, so this is my command<br /><br />mkdir -p /root/fcupdate/apps<br />cd /root/fcupdate/apps<br />wget <a href="http://10.10.105.105/software/fedora/extras/thunderbird-1.0.7-1.1.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />yum -y localinstall thunderbird-1.0.7-1.1.fc4.i386.rpm<br />cd<br /><br />Now Login as user and follow this step to make Thunderbird as your Default email client on Gnome<br /><br />&quot;Desktop&quot; &gt; &quot;Preferences&quot; &gt; <br />&quot;More Preferences&quot; &gt; &quot;Preferred Applications&quot; <br />and selecting &quot;Thunderbird Mail&quot; in the drop-down menu under the Mail Reader tab.<br /><br />Or you can edit file /usr/share/applications/redhat-email.desktop as root<br />and replace the line<br /><br />Exec=launchmail <br /><br />with <br /><br />Exec=thunderbird<br /><br />To simplify setting the same configuration for most PCs I have put file redhat-email.desktop to server and create a script to update user&#039;s launcmail configuration. Below is the script:<br /><br />#Script name: ic.thunderbird.sh<br />#Install and configure Thunderbird for default email client<br />#date  1 March 2006<br />#It should be run as root otherwise you get error<br /><br />mkdir -p /root/fcupdate/apps<br />cd /root/fcupdate/apps<br />wget <a href="http://10.10.105.105/software/fedora/extras/thunderbird-1.0.7-1.1.fc4.i386.rpm" target="_blank" >http://10.10.105.105/software/fedora/ex ... 4.i386.rpm</a><br />yum -y localinstall thunderbird-1.0.7-1.1.fc4.i386.rpm<br />wget <a href="http://10.10.105.105/software/fedora/extras/redhat-email.desktop" target="_blank" >http://10.10.105.105/software/fedora/ex ... il.desktop</a><br />cp --reply=yes redhat-email.desktop /usr/share/applications<br />cd<br /><br />#done<br />]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060301-105259</guid>
			<author>am3n</author>
			<pubDate>Wed, 01 Mar 2006 03:52:59 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=03&amp;entry=entry060301-105259</comments>
		</item>
		<item>
			<title>FC4 Desktop Install and Configure website</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060228-165338</link>
			<description><![CDATA[Here&#039;s a good website that give you a tutorial on how to Install and configure FC 4 for Desktop usage<br /><br /> <a href="http://stanton-finley.net/fedora_core_4_installation_notes.html" target="_blank" >http://stanton-finley.net/fedora_core_4 ... notes.html</a><br /><br />I&#039;ll follow the steps on that site and will put my own notes here.]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060228-165338</guid>
			<author>am3n</author>
			<pubDate>Tue, 28 Feb 2006 09:53:38 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=02&amp;entry=entry060228-165338</comments>
		</item>
		<item>
			<title>My PC which I am going to install Linux</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060228-165311</link>
			<description><![CDATA[I think I have describe my PC hardware configuration before I am telling that linux just work fine on my PC. So here&#039;&#039;s my PC Hardware configuration<br />Asus P4R800-Deluxe Motherboard<br />Intel Pentium IV 2.8Ghz HT<br />Vgen 512 MB DDR-RAM PC3200 x2<br />SATA Seagete 200 GB <br />IDE Lite-On DVD-CDRW on Secondary Master<br /><br />below specs is it important ??<br />Compaq Keyboard<br />Logitech Scroll Mouse<br />Sun 17&quot; Monitor<br />Simbadda Casing<br />and Altec Lansing 221 Speaker]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060228-165311</guid>
			<author>am3n</author>
			<pubDate>Tue, 28 Feb 2006 09:53:11 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=02&amp;entry=entry060228-165311</comments>
		</item>
		<item>
			<title>My HDD Partitions</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060228-165210</link>
			<description><![CDATA[My harddisk partition configuration Seagate SATA 200GB (Detected 180GB)<br />Partition 1 = /dev/sda1 = Windows XP Pro (C:)= 40GB = NTFS <br />Partition 2 = /dev/sda2 = Fedora Core 4 (/) = 30GB = Ext3FS<br />Partition 3 = /dev/sda3 = Fedora Core 4 home folder (/home) = 20GB = Ext3FS<br />Partition 4 = /dev/sda4 = Extended Partition<br />Partition 5 = /dev/sda5 = Data Partition (/data)(D:) = 20GB = Ext3FS (for exchanging files between linux/winxp)<br />Partition 6 = /dev/sda6 = Fedora Core 4 Swap (swap) = 2GB = swap<br />Partition 7 = /dev/sda7 = My Documents (E:) = 40GB = NTFS<br />Partition 8 = /dev/sda8 = My Files (F:) = 28GB = NTFS<br /><br />I am not mounting my NTFS partition on FC4. Not because FC4 didn&#039;t provide kernel that can read NTFS (altough I can install it) but I just wan&#039;t to separate &quot;the world&quot; of FC4 and WinXP<br /><br /><br />Below is detailed infomartion:<br /><br /># fdisk -l<br /><br />Disk /dev/sda: 200.0 GB, 200049647616 bytes<br />255 heads, 63 sectors/track, 24321 cylinders<br />Units = cylinders of 16065 * 512 = 8225280 bytes<br /><br />   Device Boot      Start         End      Blocks   Id  System<br />/dev/sda1   *           1        5344    42925648+   7  HPFS/NTFS<br />/dev/sda2            5345        9168    30716280   83  Linux<br />/dev/sda3            9169       11718    20482875   83  Linux<br />/dev/sda4           11719       24321   101233597+   5  Extended<br />/dev/sda5           11719       14268    20482843+   b  W95 FAT32<br />/dev/sda6           14269       14523     2048256   82  Linux swap / Solaris<br /><br /># cat /etc/fstab<br /># This file is edited by fstab-sync - see &#039;man fstab-sync&#039; for details<br />LABEL=/                 /                       ext3    defaults        1 1<br />/dev/sda5               /data                   vfat    defaults        0 0<br />/dev/devpts             /dev/pts                devpts  gid=5,mode=620  0 0<br />/dev/shm                /dev/shm                tmpfs   defaults        0 0<br />LABEL=/home             /home                   ext3    defaults        1 2<br />/dev/proc               /proc                   proc    defaults        0 0<br />/dev/sys                /sys                    sysfs   defaults        0 0<br />LABEL=SWAP-sda6         swap                    swap    defaults        0 0<br />/dev/fd0                /media/floppy           auto    pamconsole,exec,noauto,managed 0 0<br />/dev/hdc                /media/cdrecorder       auto    pamconsole,exec,noauto,managed 0 0<br /><br /><br />LABEL=/ is /dev/sda2<br />LABEL=/home is /dev/sda3<br />LABEL=SWAP-sda6 is /dev/sda6]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060228-165210</guid>
			<author>am3n</author>
			<pubDate>Tue, 28 Feb 2006 09:52:10 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=02&amp;entry=entry060228-165210</comments>
		</item>
		<item>
			<title>Configure Gnome Nautilus + Terminal + Thunderbird</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060228-164940</link>
			<description><![CDATA[Gnome Nautilus is a default File Explorer used by FC4 when you are using GNOME as Desktop Environment but something that bugging me that every time I open up a folder, it will display a new nautilus window. I am able to change the setting by choosing option <br /><br />Edit &gt;&gt; Preferences &gt;&gt; Behaviour and tick mark on menu Always open in browser windows<br /><br />Done! now Nautilus didn&#039;&#039;t open a new window everytime I open up a folder<br /><br />Then I am a TUI lover hence my job is maintaining servers so I&#039;&#039;ll be using Terminal often and I want terminal is available on Launcher. Here&#039;&#039;s how:<br /><br />Click &quot;Applications&quot; &gt; &quot;System Tools&quot;<br />Right click on &quot;Terminal&quot; and select &quot;Add this launcher to panel&quot;<br /><br />Done also<br /><br />Now making Thunderbird as my Default Email client rather than Evolution<br /><br />Click &quot;Desktop&quot; &gt; &quot;Preferences&quot; &gt; &quot;More Preferences&quot; &gt; &quot;Preferred Applications&quot;<br />Choose &quot;Mail Reader&quot; Tab and Select Thunderbird Mail from the dropdown<br />Hit Close button<br /><br />Now when you click Lauch mail from the Laucher, Thunderbird will be opened rather than Evolution.<br />*You can choose Thunderbird if you already install it before<br />:)]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060228-164940</guid>
			<author>am3n</author>
			<pubDate>Tue, 28 Feb 2006 09:49:40 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=02&amp;entry=entry060228-164940</comments>
		</item>
		<item>
			<title>Disabled service on Runlevel 3 and 5</title>
			<link>http://www.am3n.net/linux/index.php?entry=entry060228-164846</link>
			<description><![CDATA[apmd - I am not running on notebook<br />bluetooth - I don&#039;&#039;t have a bluetooth devices<br />isdn - My network running on LAN 10/100 MB<br />mdmonitor - I am not installing my Fedora using RAID Harddisk<br />pcmcia - My Fedora in on PC not notebook<br /><br />Click on &quot;Desktop&quot; &gt; &quot;System Settings&quot; &gt; &quot;Server Settings&quot; &gt; &quot;Services&quot; and deselect system services that you will not immediately use. When you click on each of them you will see a description as to what they are for. If you&#039;&#039;re not sure, leave them in there. (I deselected above services.) Click the &quot;save&quot; icon. You should also select &quot;Edit Runlevel&quot; on the menu, select &quot;Runlevel 3&quot;, deselect the same system services as you just did for run level 5, and save them as well by clicking the &quot;save&quot; icon. Then close the service configuration screen. (Run level 3 is for text mode only without X windows and we will use this run level later when configuring the ATI driver.)<br />]]></description>
			<category>Desktop</category>
			<guid isPermaLink="true">http://www.am3n.net/linux/index.php?entry=entry060228-164846</guid>
			<author>am3n</author>
			<pubDate>Tue, 28 Feb 2006 09:48:46 GMT</pubDate>
			<comments>http://www.am3n.net/linux/comments.php?y=06&amp;m=02&amp;entry=entry060228-164846</comments>
		</item>
	</channel>
</rss>

