I decided to install the i686 KDE spin version of Fedora 14.
Unfortunately there are still third party applications like flash player or skype that seem to have better compatibility with x86 instead of X86_64.
I know the ultimate goal is to make this a MythTV media centre computer, but I like browsing the web, going to youtube or making skype calls through my lounge TV.
I downloaded the KDE spin version of Fedora 14 and put it in a USB stick with unetbootin. Please note that you have to use version 549 or above of unetbootin, otherwise it wont work.
After the system starts it offers the option to install to hard drive.
In Fedora 14 ssh is disabled by default. Most of the installations I do on this systems I do in the console using putty from my Windows notebook. It makes things easy as you can copy and paste most commands.
To enable ssh it log on in a console as root. To go to a console press (ctrl+alt+F2). In username select root and in password the password you wrote before.
#chkconfig sshd on
#service sshd start
I knowselinux improves security, but for a home media centre connected to the Internet through a router it is a bit too much, so I will disable it.
I'm also disabling the firewall.
vi /etc/sysconfig/selinux
... and set SELINUX to disabled:
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - SELinux is fully disabled.
SELINUX=disabled
# SELINUXTYPE= type of policy in use. Possible values are:
# targeted - Only targeted network daemons are protected.
# strict - Full SELinux protection.
SELINUXTYPE=targeted
Now that the system is the way we want it we can restart to apply all these changes.
#reboot