1. Reboot the system
2. When you see the Grub menu, highlight your Fedora installation with the arrow keys and press ‘e’ to edit.
3. Again use the arrow keys to highlight the line saying ‘kernel’ at the beginning and press ‘e’ again, which will let you edit that line.
4. Append a space at the end of the line and type ’single’ without the quotes there. Press the Enter key.
5. Now press ‘b’ which will take you to the Linux single user mode where you’ll have privileged access without typing a password.
6. Now you do a passwd, and change your root password. Then reboot. You are done.
Now enter into TTY mode and login as root and use passwd "username" to change the password of needed password
enjoyyyyyyyy............
Monday, February 13, 2012
Saturday, January 14, 2012
CONFIGURE WORDPRESS IN FEDORA
First for using wordpress fedora we need to install apache(httpd)server,mysqld,php
yum install httpd
yum install mysql mysql-server
yum install php phpmyadmin
check the status of httpd and mysql
service httpd status
service mysql status
add both to startup
chkconfig httpd on
chkconfig mysql on
if needed restart stop and start the both services
service httpd restart
service mysql restart
any problem with httpd use -t to get the reason
httpd -t
type in the browser localhost to get fedora defaul page
go to /etc/httpd/conf.d/welcome.conf and comment all the lines
now downlaod the wordpress form there site
cd /tmp
wget http://wordpress.org/latest.tar.gz
now decompress the fileto /var/www/html/
tar -xvzf latest.tar.gz -C /var/www/html
change the privilage of the folder by
chmod -R 777 /var/www/html/
now we need to create database
mysql
create user user_name identified by password
create database database_name;
grand all on database_name to user_name;
flush privilages;
exit;
now go to borwser and type localhost/wordpress to get the configuration file of the wordpress
database: database_name
username:user_name
password:password
host:localhost:
and click next
to finish installing giving mail id username and password
if the config file is not made open the file /var/www/html/wordpress/wp-config-sample.php and make the need changed u will get the code to replace for the config not created page and save the page as wp-config.php
yum install httpd
yum install mysql mysql-server
yum install php phpmyadmin
check the status of httpd and mysql
service httpd status
service mysql status
add both to startup
chkconfig httpd on
chkconfig mysql on
if needed restart stop and start the both services
service httpd restart
service mysql restart
any problem with httpd use -t to get the reason
httpd -t
type in the browser localhost to get fedora defaul page
go to /etc/httpd/conf.d/welcome.conf and comment all the lines
now downlaod the wordpress form there site
cd /tmp
wget http://wordpress.org/latest.tar.gz
now decompress the fileto /var/www/html/
tar -xvzf latest.tar.gz -C /var/www/html
change the privilage of the folder by
chmod -R 777 /var/www/html/
now we need to create database
mysql
create user user_name identified by password
create database database_name;
grand all on database_name to user_name;
flush privilages;
exit;
now go to borwser and type localhost/wordpress to get the configuration file of the wordpress
database: database_name
username:user_name
password:password
host:localhost:
and click next
to finish installing giving mail id username and password
if the config file is not made open the file /var/www/html/wordpress/wp-config-sample.php and make the need changed u will get the code to replace for the config not created page and save the page as wp-config.php
Friday, January 13, 2012
INSTALLING GOOGLE CHROME IN FEDORA
First make the google repo file(google.repo) and copy it in /etc/yum.repo.d/
and later run
yum install google-chrome-stable
content of google.repo file should be a below
[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
and later run
yum install google-chrome-stable
content of google.repo file should be a below
[google64]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
Subscribe to:
Posts (Atom)