If you want to install Internet Explorer on Ubuntu you can install using wine or playonlinux which are front-end utilities to install windows executable files in Linux.
To install PlayOnLinux in Ubuntu using Terminal follow the below steps :
wget -q "http://deb.playonlinux.com/public.gpg" -O- | sudo apt-key add -
sudo wget http://deb.playonlinux.com/playonlinux_precise.list -O /etc/apt/sources.list.d/playonlinux.list
sudo apt-get update
sudo apt-get install playonlinux
internet explorer,ubuntu internet explorer,ubuntu ie,install ie on ubuntu,install internet explorer in ubuntu,ubuntu 12.04
Thursday, February 28, 2013
Wednesday, January 9, 2013
Use Internet Proxy in Android Emulator
follow the steps and you can use the internet in Android Emulator over proxy
go to Settings -> Wireless & Networks -> Mobile Networks -> Access Point Names
in Access Point Names you can see default APN with the name TelKil click on that,
now you can see the list of settings
click on Proxy and edit your proxy server ip and click ok
click on Port and edit your proxy server port and click ok
and its done.
proxy in android emulator,proxy in android simulator,internet proxy in android,android internet on proxy
go to Settings -> Wireless & Networks -> Mobile Networks -> Access Point Names
in Access Point Names you can see default APN with the name TelKil click on that,
now you can see the list of settings
click on Proxy and edit your proxy server ip and click ok
click on Port and edit your proxy server port and click ok
and its done.
proxy in android emulator,proxy in android simulator,internet proxy in android,android internet on proxy
Thursday, December 13, 2012
Create AVD in Eclipse JUNO
go to Run -> Run Configuration
it will open Run Configuration Window
In Left side of Window there is option of
Android Application, Double click on that.
Now in Right Side Click on Target
Now got down side, and click on Manager
Create Your AVD and its done. create avd,create avd in eclipse juno,eclipse juno,juno
it will open Run Configuration Window
In Left side of Window there is option of
Android Application, Double click on that.
Now in Right Side Click on Target
Now got down side, and click on Manager
Create Your AVD and its done. create avd,create avd in eclipse juno,eclipse juno,juno
Tuesday, December 11, 2012
Configure Android SDK on Eclipse JUNO in Ubuntu
Download Eclipse Juno from http://www.eclipse.org/downloads/
After Downloading extract file.
make one Directory with any name mine is EclipseAndroid
Copy and Paste Extracted eclipse directory to it.
Open Eclipse
go to Help -> Install New Software
Click on Add
in Name give any Name
in site paste this url : "http://dl-ssl.google.com/android/eclipse" and click ok
it will download the ADT Plug-ins and install it.
it will ask for restarting Eclipse press No and exit Eclipse.
Now download Android SDK from
http://developer.android.com/sdk/index.html
extract the file and paste it to EclipseAndroid Directory.
Start Eclipse and go to Windows -> Prefrences and set the path of Android Sdk
it will start downloading and installing all the required plug-ins and tools for android development.
After doing all these need to set the PATH in .profile
PATH="$PATH:/path/android-sdk-linux/tools/:/path/android-sdk-linux/platform-tools" configure android sdk,android sdk eclipse,android sdk eclipse juno,eclipse juno,configure sdk in juno in ubuntu,eclipse juno ubuntu
After Downloading extract file.
make one Directory with any name mine is EclipseAndroid
Copy and Paste Extracted eclipse directory to it.
Open Eclipse
go to Help -> Install New Software
Click on Add
in Name give any Name
in site paste this url : "http://dl-ssl.google.com/android/eclipse" and click ok
it will download the ADT Plug-ins and install it.
it will ask for restarting Eclipse press No and exit Eclipse.
Now download Android SDK from
http://developer.android.com/sdk/index.html
extract the file and paste it to EclipseAndroid Directory.
Start Eclipse and go to Windows -> Prefrences and set the path of Android Sdk
it will start downloading and installing all the required plug-ins and tools for android development.
After doing all these need to set the PATH in .profile
PATH="$PATH:/path/android-sdk-linux/tools/:/path/android-sdk-linux/platform-tools" configure android sdk,android sdk eclipse,android sdk eclipse juno,eclipse juno,configure sdk in juno in ubuntu,eclipse juno ubuntu
Tuesday, November 27, 2012
Generate Google Map API for ANDROID in Ubuntu
get the android default debug keystore
eclipse->windows->preferences->->Android ->Build
copy the default debug keystore value
Now go to the terminal
-- cd /
-- cd /usr/lib/jvm/java-6-openjdk/bin
-- keytool -list -alias androiddebugkey \-keystore /paste debug keystore which has been copied
after doing this you will get result like below :
androiddebugkey, 11 Jun, 2012, PrivateKeyEntry,
Certificate fingerprint (MD5): 65:13:5E:81:B6:F4:99:12:8C:0C:4A:DF:60:3B:48:B8
Wednesday, November 21, 2012
Install GIT on CentOS/RedHat
first need to login as root and need to install dependencies
yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel
now
cd /usr/local/src
download the source of git using :
wget http://git-core.googlecode.com/files/git-1.7.9.tar.gz
extact file :
tar xvzf git-1.7.9.tar.gz
now into source direcotry
cd git-1.7.9
now configure a makefile using below command
./configure
compile the code using below command
make
now start installation using below
make install
after completion of installation make one directory which you want to make a git repository
for eg.
mkdir /opt/test
cd /opt/test
git init
if all will be done properly and git has been installed properly you will get message like below
Initialized empty Git repository in /opt/test/.test/
Monday, November 19, 2012
Install Subversion on CentOS/RedHat
Installation
yum install mod_dav_svn subversion
service httpd start/restart
chkconfig httpd on
Configure
Open Terminal
cd /etc/httpd/conf.d/
vi subversion.conf
uncomment the following if they are commented out
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
# Add the following to allow a basic authentication and point Apache to where the actual repository resides.
DAV svn
SVNPath /var/www/svn/repos
AuthType Basic
AuthName "Subversion repos"
AuthUserFile /etc/svn-auth-conf
Require valid-user
Create/Configure repository
path which you have configured in subversion.conf file.
cd /var/www/svn/
svnadmin create repos
chown -R apache.apache repos
/etc/init.d/httpd restart
For Import
svn import /test/temp file:///var/www/svn/repos/temp -m "description"
For Delete
svn delete -m --F http://192.168.1.1/svn/repos/temp/
Creat User
htpasswd -cm /etc/svn-auth-conf username
Adding password for user yourusername
htpasswd -m /etc/svn-auth-conf anotherusername
subversion,svn,svn server,svn server on cent os,svn server on redhat,subversion on centos,subversion on redhat,install subversion on redhat,install subversion on centos
yum install mod_dav_svn subversion
service httpd start/restart
chkconfig httpd on
Configure
Open Terminal
cd /etc/httpd/conf.d/
vi subversion.conf
uncomment the following if they are commented out
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
# Add the following to allow a basic authentication and point Apache to where the actual repository resides.
DAV svn
SVNPath /var/www/svn/repos
AuthType Basic
AuthName "Subversion repos"
AuthUserFile /etc/svn-auth-conf
Require valid-user
Create/Configure repository
path which you have configured in subversion.conf file.
cd /var/www/svn/
svnadmin create repos
chown -R apache.apache repos
/etc/init.d/httpd restart
For Import
svn import /test/temp file:///var/www/svn/repos/temp -m "description"
For Delete
svn delete -m --F http://192.168.1.1/svn/repos/temp/
Creat User
htpasswd -cm /etc/svn-auth-conf username
Adding password for user yourusername
htpasswd -m /etc/svn-auth-conf anotherusername
Subscribe to:
Posts (Atom)