ifconfig eth0 10.0.0.2 netmask 255.255.255.0 broadcast 10.0.0.255
Step 2. Add the following DNS Servers to the Wired connection:
- 75.75.75.75
- 75.75.76.76
Also add hsd1.state.comcast.net to the Search Domains.
alec@alec-MS-7623 ~/product $ uname -aLinux alec-MS-7623 3.13.0-24-generic #47-Ubuntu SMP Fri May 2 23:30:00 UTC 2014 x86_64 x86_64 x86_64 GNU/LinuxThe first thing to do is to DOWNLOAD ANDROID STUDIO FOR LINUX - hit this button when you see it. Then:
alec@alec-MS-7623 ~ $ cd ~/product/
alec@alec-MS-7623 ~/product $ mv ~/Downloads/android-studio-ide-141.2343393-linux.zip .
alec@alec-MS-7623 ~/product $ unzip android-studio-ide-141.2343393-linux.zip
...alec@alec-MS-7623 ~/product $ mkdir ~/binalec@alec-MS-7623 ~/product $ cd ~/binalec@alec-MS-7623 ~/bin $ ln -s ~/product/android-studio/bin/studio.sh android-studio
alec@alec-MS-7623 ~/bin $ cd ~/project/alec@alec-MS-7623 ~/project $ mkdir androidalec@alec-MS-7623 ~/project $ cd android/alec@alec-MS-7623 ~/project/android $ android-studio &
#!/bin/sh #-------------------------------- # let's start with a new project #-------------------------------- pax-create-project -g examples -a spring cd spring #----------------------------------------------------------------------------------- # first import the Spring Dynamic-Modules Extender bundle - we use importTransitive # to also import any bundles it depends on and widenScope to do an exhaustive check # of all dependencies (normally only "provided" scope dependencies are checked) #----------------------------------------------------------------------------------- pax-add-repository -i com.springsource.repository.bundles.external -u http://repository.springsource.com/maven/bundles/external pax-import-bundle -g org.springframework.osgi -a spring-osgi-extender -v 1.1.2 -- -DimportTransitive -DwidenScope #------------------------------------------------------------ # create new OSGi service bundle with example code and tests #------------------------------------------------------------ pax-create-bundle -p org.example.service -- -Djunit #-------------------------------------------------------------------- # create new Spring Dynamic Modules bean with example code and tests #-------------------------------------------------------------------- pax-create-bundle -p org.example.bean -- -Dspring -Djunit #---------------------------- # finally, build and deploy! #---------------------------- exec mvn clean install pax:provision "-Dframework=equinox"