Fedora 15, codename “Love Lock” features Gnome3 as the default desktop environment. The UI is stunningly beautiful but the navigation requires some getting used to. Biggest surprise – no minimize button, Gnome3 devs focused on the use of workspace rather than minimizing. However I found out that we can still minimize by right clicking on the window of the application. But without playing much with the GUI, I jumped into setting up my work environment. Installing LAMP was a bit different given my past experience in Ubuntu.
1 2 |
su root yum install httpd mysql mysql-server php php-mysql |
Then started the service :
1 2 |
su root /sbin/service httpd start |
Changed ownership of the /var/www directory:
1 2 |
su root chown -hR masnun /var/www |
Then I fired up nautilus, browsed /var/www and deleted all the files. Created a index.php with phpinfo(). And then tried to restart the server:
1 2 |
su root /sbin/service httpd restart |
It failed because the server document root was wrong in the httpd.conf. When installing apache on Fedora, the server document root is /var/www/html which I deleted while cleaning up /var/www. So I installed nano:
1 2 |
su root yum install nano |
And then edited the /etc/httpd/conf/httpd.conf file with nano to fix the issues. Then again restarted the server and it worked 🙂
Besides, I learned this command:
1 |
httpd -t |
It checks the httpd.conf for syntax errors.
I created a test user and then tried to delete the user. The GUI had issues with that. Then found this command to do that:
1 2 |
su root userdel -r username |
I downloaded Skype and installed. It’s working fine. So far the experience is good. I am learning lots of commands and I’m loving it 🙂
2 replies on “Fedora 15 “Love Lock” and My Experience”
Checkout yum groupinstall. It’s like apt-get install group^ or tasksel group.
Thanks a lot vaiya. I was looking for something like that 🙂