edit
insert at the bottom
Reboot and test.
Other models to test are:
thinkpad
ideapad
hp_laptop
dell-vostro
olpc-xo-1_5
Adjust alsamixer
edit
Ubuntu 10.04 comes with mono. You can check the mono version using
mono -V
To install MonoDevelop follow the following steps-
deb http://badgerports.org lucid main
The Virtualbox (non-free) repository is available for Ubuntu 10.4 Lucid Lynx (kind of late I'd say). You can add it using the
following command:
sudo add-apt-repository "deb http://download.virtualbox.org/virtualbox/debian lucid non-free"
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -
Then install it:
sudo apt-get update && sudo apt-get install virtualbox-3.2
type
sudo apt-get install texlive-full
Use following commands
sudo su
apt-get install build-essential
sudo apt-get install build-essential rails
apt-get install ruby rdoc libopenssl-ruby
Download rubygems-1.3.7.tgz
from web and extract that. Then
cd rubygems-1.3.7
ruby setup.rb
ln -s /usr/bin/gem1.8 /usr/local/bin/gem
gem install rails
sudo apt-get install libsqlite3-dev sudo gem install sqlite3-ruby
1. To get started, go to Applications –> Ubuntu Software Center
2. Next, type ‘Adobe Flash Plug-in’ in the search box, then select Adobe
3. Install it.
4. restart your PC
Posted by Kamrul | Posted on 7:32 AM
Category:
Apache 2
To install Apache server type the following command in terminal.
sudo apt-get install apache2
When it says "Do you want to continue [Y/n]?" just press ENTER.
After installation is finished test it on your browser - "http://localhost". If it shows --
That means your server installation is working fine.
Changing document root see.
PHP 5
To install PHP type following command on terminal.
sudo apt-get install php5 libapache2-mod-php5
Then restart Apache Server using
sudo /etc/init.d/apache2 restart
MySQL 5
To install MySQL 5 put the following command on the terminal.
sudo apt-get install mysql-server mysql-client
After intalling MySQL you will need to install another package which will help PHP to connect with MySQL.
Type following command on the terminal for that package.
sudo apt-get install php5-mysql
To install phpmyadmin use the following command
sudo apt-get install phpmyadmin
Also, by default the phpmyadmin script is installed in /usr/share/phpmyadmin, a directory that isn't access from Apache. You'll want to do the following to get http://localhost/phpmyadmin to work
cd /var/www sudo ln -s /usr/share/phpmyadmin phpmyadmin
If you want to enable root account (which is not recommended) enter the following command.
$sudo passwd root
This will prompt for a new root password and once you confirm it, you can start using the root account to login.
If you want to disable root account in ubuntu you need to lock the root account by using the following command
$sudo passwd -l root
If you want to work on a root console you’d better use the following command
$sudo -i
Posted by Kamrul | Posted on 9:09 PM
Category:
/* Reset all white-space to 0 for consistency across browsers */Now you can do some more involved resets, but I've found the 8 lines of CSS get the job done.
* { margin:0px; padding:0px; }
/* Default to some sans-serif font at a specific size */
body { font-family: Verdana, Arial, sans-serif; font-size:12px; }
/* Get some padding between paragraphs and some line spacing */
p { padding-bottom:5px; line-height:1.4em; }
/* Put some padding back onto our list elements */
ul, ol { margin-left: 10px; }
li { margin-left:10px; padding-left:10px; }
/* Bye bye ugly blue border */
a img { border:0px; }
/* No dots around clicked links */
a, a:active { outline: none; }
/* Class to any floated elements */
.clear { clear:both; }
/* Set the width to 900 pixels, centered on the page with a little padding on top */
#container { width:900px; margin:0 auto; padding-top:10px; }
/* 90 pixels to work with at the top - positioned relative so that we can absolutely position our header elements easily */
#header { height:60px; position:relative; }
#logo { position:absolute; left:0px; top:0px; }
#tagline { position:absolute; right:0px; top:5px; color:#666666; font-size:14px; font-weight:bold; }
/* Quick right-aligned tab-looking text menu */
/* Make sure to be explicit with the padding and margin on our ul and li elements so we can change the defaults later on as necessary */
#main_menu { height:26px; border-bottom:3px solid #000000; margin-bottom:30px; }
#main_menu ul { display:block; float:right; list-style-type:none; padding:0px; margin:0px; }
#main_menu li { display:block; float:left; margin:0 5px; padding:0px; }
#main_menu a {
display:block;
padding:5px 20px;
color:white;
background-color: #000000;
text-decoration:none;
}
#main_menu a:hover { color: #000000; background-color:#666666; }
#content_container {
padding:10px 0px;
border-bottom: 1px solid #CCCCCC;
/* Do the IE hack to get a minimum content container height */
height:auto !important;
height:500px;
min-height:500px;
}
/* Floating left and then right means that we can play with the widths of the sidebar and content separately and not worry about explicitly setting the space between */
#sidebar { float:left; width:200px; }
.sidebar_header { font-weight:bold; padding-bottom:2px; border-bottom:1px solid #CCCCCC; margin-bottom: 5px;}
.sidebar_content { padding-bottom:10px; }
#content { float:right; width:650px; }
#footer { height:20px; position:relative; }
#copyright { position:absolute; top:5px; right:0px; font-size:10px; color:#999999; }
/* Content Styles */
h1 { color: #333333; padding-bottom:15px; font-size:26px; }
.content .info { position:relative; top:-17px; font-size:11px; color:#999999; font-style:italic; }
.content img { float:left; padding:0px 14px 10px 0px; }
p { color:#444444; }
/* Form Styles */
.horizontal_form .item { margin:10px 4px; }
.horizontal_form .item .label {
width:150px;
text-align:right;
float:left;
padding-right:10px;
vertical-align:baseline;
padding-top:3px;
color:#666666;
}
.horizontal_form .item .description {
clear:both;
padding-left: 160px;
font-size:11px;
color:#aaaaaa;
font-style:italic;
}
.horizontal_form .item .text_field {
border:1px solid #999999;
padding:2px 2px;
color:#666666;
}
.horizontal_form .item .text_field:focus {
background-color:#eeeeee;
}
.horizontal_form .header {
margin:15px 0px 10px 0px;
padding-left:0px;
font-size:16px;
border-bottom:1px solid #CCCCCC;
font-weight:bold;
color: #666666;
}
.horizontal_form .button { margin-left:200px; padding-top:10px; }
.horizontal_form .button input { padding:4px 10px; }
/* Table Styles */
table.account_table { border-collapse: collapse; }
table.account_table th {
padding: 10px 10px;
color:white;
font-size:14px;
background-color: #7caaff;
font-weight:bold;
}
table.account_table td {
padding: 6px 10px;
border-bottom:1px solid #999999;
}
table.account_table tr.odd td {
background-color:#eeeeee;
}
table.account_table td.currency { text-align:right; }
© All Rights Reserved. Important
Theme by : Hosting | Converted into Blogger Templates by Theme Craft