Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora Resources > Guides & Solutions (No Questions)
FedoraForum Search

Forgot Password? Join Us!

Guides & Solutions (No Questions) Post your guides here (No links to Blogs accepted). You can also append your comments/questions to a guide, but don't start a new thread to ask a question. Use another forum for that.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 15th November 2004, 04:01 PM
taylor65 Offline
Registered User
 
Join Date: Jan 2004
Posts: 806
How-to setup FC3 for average desktop

These are things I did to make FC3 (Fedora Core 3) more usable as a desktop for mysefl, and I figured some others out there would like to do the same steps. If you are setting up a server or laptop, you don't want to do all these steps since I disable many server daemons and laptop utilities. These steps were taken on an HP a720n.

Downloading FC3:
- I downloaded the DVD .iso via the bittorrent network.
- Use the torrent because most file transfer methods aren’t capable of doing that large a download, plus you usually end up with corrupt files if you try to ftp the iso files.
- I use the gui front-end azureus for running bittorrent. It’s very easy. Download at azureus.sourceforge.net. Azureus runs on all OSs that have java.
- After downloading my .iso file(s), I leave my machine running azureus for a few days so others can get the files also

Pre-Installation:
I have a PC that had XP installed on it. In order to dual boot, I had to remove space from the XP partition to make room for FC3 (unlike some other linux distributions, the FC3 installer doesn’t have the ability to take space away from the XP partition). I use Partition Magic to do this (about $30 US). I set aside a chunk of disk space with Partition Magic as ext3 filesystem (I would suggest no less than 10GB for linux).

Installation:
While installing FC3, I ran into a bug that prevented me from using the auto partition. I had to partition it manually with Disk Druid. I assigned the ‘/boot’ partition as ext3 100MB, the swap partition as swap of 2x memory, and the ‘/’ partition as ext3 with all the remaining linux space. I set the GRUB parameters to be able to boot from 3 different paritions. The first partition is the /boot partition (that will be automatically selected). The second partition is Windows XP and the third is the Windows XP restore partition. You can tell the difference between the two Windows partitions by their filesystem type – Windows XP is ‘ntfs’, while the restore partition is ‘vfat’. I set SELinux to disable, chose custom install and chose the ‘everything’ option at the bottom of the package list page.

Post-installation:
I disabled many daemons (processes) that I don’t use. Do this by going into System Settings -> Server Settings -> Services. From there, I unchecked the following services: apmd, arptables_if, auth, canna, gpm, ip6tables, isdn, mDNSResponder, mdmonitor, nfslock, nifd, pcmci, rhnsd, rpcgssd, rpcidmapd, rpcsvcgssd, sendmail, sshd. This will help speed up booting.

Next, I disabled many cron jobs (automated scripts that run at certain times). I do this by creating a new directory that cron doesn’t use and moving scripts into that directory. This way I still have the scripts, rather than just deleting them. As root, I did ‘mkdir /etc/cron.never’. Then I moved the following files from /etc/cron.daily to /etc/cron.never: squirrelmail.cron, 00webalizer, cyrus-imapd, inn-cron-expire, tetex.cron, yum.cron, certwatch, slrnpull-expire, yum.cron. Then, I moved the following files from /etc/cron.daily to /etc/cron.monthly: slocate.cron, prelink, makewhatis.cron. This will help speed up use of FC3 if you only turn your PC on when you're using it, like I do, because many of these cron jobs run when you first boot up.

Firewire:
To enable firewire, I added the following 2 lines to /etc/rc.local:
mknod –m 666 /dev/raw1394 c 171 0
/sbin/modprobe raw1394

USB 2.0:
I wasn’t able to get USB 2.0 to work with my USB 2.0 flash disk on a USB 2.0 port. I had to buy an external USB 1.1-only hub and plug the flash disk into that for it to work.

Playing CDs:
I wasn’t able to play CDs, or burn CDs or burn DVDs as a normal user. To fix, run, as root, ‘up2date udev’ to fix that.

Adding more software:
I use synaptic for installing new software because it’s very easy. However, synaptic isn’t installed with the FC3 disks, so the following is what I did, using java as an example program that I added:
1 - add dag repository to yum by creating a file called /etc/yum.repos.d/dag.repo and put the following 5 lines into the file:
[dag]
name=Dag
baseurl=http://apt.sw.be/fedora/$releasever/en/$basearch/dag/
enabled=1
gpgcheck=0
2 - Install gpg keys for dag (rpm --import http://dag.wieers.com/packages/RPM-GPG-KEY.dag.txt)
3 - Install synaptic (yum install synaptic)
4 - Run synaptic (System Settings -> Synaptic Package Manager)
5 - Click Refresh
6 - Click Find and look for j2re
7 - Mark mozilla-j2re for installation (right-click -> Mark for Installation)
8 - Click Apply
9 - Done. Mozilla and Firefox now have java.
10 - Do the same for flash and anything else you want to install. Some popular programs are mozilla-flash (for flash within a browser), mozilla-totem-xine (to play movies within a browser like mozilla or firefox), etc.


Realplayer:
- Install Realplayer (download RealPlayer10GOLD.bin from www.real.com and as root run ./RealPlayer10GOLD.bin)

Wondering how you can help with the open source community? I’m not a programmer, so here’s what I do:
- Write how-to docs
- Answer questions on a forum (www.fedoraforum.org for one)
- Report bugs to bugzilla.redhat.com (check forums first to see if it’s already been solved)
- Try test releases
- E-mail vendors, ask them to port programs to linux (like shockwave, HP printing software, ESPN video, etc.)
- E-mail vendors that support linux and tell them thanks (Sun for java, Macromedia for flash, Real for realplayer, hp for hpoj scanning driver, etc).
Reply With Quote
  #2  
Old 12th December 2004, 03:33 AM
RamR0d Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
I actually disagree with your comment on downloads. Downloading ISO images from torrent files is very risky. They could have been modified and most people would have no idea on how to check the varacity. I definately recommend to download only from the FC3 site as this also provides a MD5 checksum so you know what you are getting. I downloaded the ISOs from FC3 using LeechFTP (freeware) and completed all FC3 and RPM ISO in 2 days on my broadband.
Reply With Quote
  #3  
Old 12th December 2004, 03:49 PM
taylor65 Offline
Registered User
 
Join Date: Jan 2004
Posts: 806
that's incorrect, the files downloaded via bittorrent are checked with md5 to verify they are valid, so there is no chance of tampered code getting into the iso images. bittorrent is the best way to go.
Reply With Quote
  #4  
Old 12th December 2004, 06:38 PM
RamR0d Offline
Registered User
 
Join Date: Dec 2004
Posts: 6
Not at all! The MD5 check on bittorent only confirms that the torrent created from the ISO has not been tampered. It cannot confirm that the ISO is the original untampered version. You can only perform this check using the MD5 key from the supplier of the ISO and that is FC
Reply With Quote
  #5  
Old 12th December 2004, 11:59 PM
Jman Offline
Registered User
 
Join Date: Mar 2004
Location: Minnesota, USA
Age: 27
Posts: 7,909
If you don't trust the bittorrent client to check the file, run md5sum on the ISO itself. It should match the ones from the Fedora download site.

Thanks for sharing your install experience.
Reply With Quote
  #6  
Old 13th December 2004, 12:24 AM
imdeemvp's Avatar
imdeemvp Offline
Registered User
 
Join Date: Feb 2004
Age: 44
Posts: 8,256
And this is from the fedoranews.org contributing articles
__________________
HELP with JAVA, MP3's, Wireless, Repo's, YUM, Partitions, System Monitors, Nvidia, ATI drivers, LIMEWIRE PRO & MORE!.

Easiest and most friendly desktop ever is PCLinuxOS! Includes all this apps. Just try it.

"The greater the struggle THE greater the achievment."

Do you know HIM?

If you are an idiot click here. NThis will test you linux skills :D
Reply With Quote
  #7  
Old 22nd December 2004, 11:48 PM
Spookster's Avatar
Spookster Offline
Registered User
 
Join Date: Dec 2004
Location: Marion, IA USA
Age: 39
Posts: 165
You can also download the ISOs from www.linuxiso.org. That's where I download all my ISOs from. They also provide the MD5s with each ISO.
Reply With Quote
  #8  
Old 26th December 2004, 02:47 AM
Woad_Warrior's Avatar
Woad_Warrior Offline
Registered User
 
Join Date: Dec 2004
Location: Harmony, PA
Posts: 457
ramrod,
the fedora site also has the torrents for all their releases, so your arguement is pointless. plus with bittorrent, you can get the iso's in hours, not days. in fact, just about every distro is encouraging the use of bittorrent to get the images because it cuts down on their already expensive bandwidth. so it's actually in the communities best intrest to use this tool rather than disparrage it.
Reply With Quote
  #9  
Old 16th January 2005, 04:17 AM
kosmosik's Avatar
kosmosik Offline
Registered User
 
Join Date: Apr 2004
Location: Warsaw, Poland
Age: 32
Posts: 1,085
Quote:
Originally Posted by Woad_Warrior
the fedora site also has the torrents for all their releases, so your arguement is pointless. plus with bittorrent, you can get the iso's in hours, not days. in fact, just about every distro is encouraging the use of bittorrent to get the images because it cuts down on their already expensive bandwidth. so it's actually in the communities best intrest to use this tool rather than disparrage it.
yes but with BT you get files faster only few days after release - when this stuff is "hot"... after release (f.e. today) it makes more sense to pick up a mirror near you and pull the images of FTP or HTTP server... releases are mirrored worldwidely so you will get files faster using common ways than bittorent... BT protocol forces on you that you have to share your bandwith for upload. with common ways you have only downstream (with BT you need to upstream some data so with sync (and async also) connections you will not get maximal download speed). BT is great but please don't say that it speeds up downloads since it does not do that - it only does that if the file is extremely popular and wanted (in some time frame) than it allows to distribute it faster - but it is only valid for "hot" stuff like day of release "0day" stuff and so on...

also if you grab files from untrusted sources (like BT) please verify file sums prior to using files... untrusted file is the one you grab from "Joe's torrents site" - you can't have a clue that files you have downloaded are in fact the files you wished to download. when you download ISO from Fedora site, or site listed as Fedora mirror than this site is trusted. you can be sure that this file is exactly the same file that Fedora team wanted you to have. if you download file from BT you can't be so sure it can be f.e. modified/hacked Fedora image that will make your system into a bugged zombie... I know this is paranoid since such things haven't happened yet - but it will happen soon so be prepared for this. don't you find yourself laughing about Windows users installing software from anywhere and than complaining about spyware/worms/viruses etc.? that will be exactly the same what you suggest - grabbing file from unknown source (not verified) and installing it...

to be strict BT protocol already checks file sums - but it just checks if the file was transfered properly. it does not check if the file is actually the one it is stating to be...

please take this things seriously or we end up like Windows in few years from now. most of Windows flaws are actually user mistakes (due to poor information, documentation whatever - they are simply there).

Last edited by kosmosik; 16th January 2005 at 04:27 AM.
Reply With Quote
  #10  
Old 8th January 2005, 09:18 PM
TestingLinux Offline
Registered User
 
Join Date: Dec 2004
Posts: 17
Cool Thank you Taylor65

Although I am writing on my own behlaf. However I am sure many others will agree with me.

Your post is what newbe's like myself are looking for to help us to get into Linux.
You have made it much easier to undestand and find our ways through the maze and tunnels of Linux.

Much thanks. Please keep them coming.

Reply With Quote
  #11  
Old 13th January 2005, 11:38 AM
owakroeger Offline
Registered User
 
Join Date: Apr 2004
Location: Yuma, Arizona
Posts: 431
Thanks, Taylor65, for your well written and informative post. Good stuff.

owa
__________________
owa
Reply With Quote
  #12  
Old 13th January 2005, 12:05 PM
bob's Avatar
bob Online
Administrator (yeah, back again)
 
Join Date: Jul 2004
Location: Colton, NY; Junction of Heaven & Earth (also Routes 56 & 68).
Age: 67
Posts: 21,206
Very good, Taylor. Personally, I did not 'select everything' since that ended up giving me every language option known to man and FC3, plus a ton of server programs that I will never use. Otherwise, a good 'how to' - picked up a couple of tips for my next installation, thanks!
__________________
Linux & Beer - That TOTALLY Computes!
Registered Linux User #362651


Don't use any of my solutions on working computers or near small children.
Reply With Quote
  #13  
Old 13th January 2005, 04:54 PM
taylor65 Offline
Registered User
 
Join Date: Jan 2004
Posts: 806
Glad to hear this was useful.
Reply With Quote
  #14  
Old 14th January 2005, 11:46 PM
taylor65 Offline
Registered User
 
Join Date: Jan 2004
Posts: 806
Update to this:
To get USB 2.0 to work, I had to disable acpi: http://www.fedoraforum.org/forum/showthread.php?t=31220
Reply With Quote
  #15  
Old 15th January 2005, 01:35 AM
TestingLinux Offline
Registered User
 
Join Date: Dec 2004
Posts: 17
how can I set my GRUB to start with KDE session instead of the default GNOM?
Reply With Quote
Reply

Tags
average, desktop, fc3, howto, setup

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Advice on Hardware Setup for Desktop horseatingweeds Hardware & Laptops 3 31st August 2008 07:46 PM
Remote Desktop setup with gdmsetup sholley Using Fedora 2 7th May 2008 08:14 PM
GNOME and KDE desktop setup ShibbyCoder Using Fedora 3 17th February 2007 01:30 PM
Remote Desktop Setup LackeyLad Using Fedora 3 14th October 2005 04:45 AM
Setup KDE as default desktop satimis Using Fedora 7 27th September 2004 04:38 PM


Current GMT-time: 11:50 (Sunday, 19-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat