After first installing Ubuntu, I had to install all of the tools and programs that I normally use. Last time, I just used the Ubuntu Software Center to search and find all of the tools that I wanted install. This time, I decided to use the command line and apt-get. You could still search by the package name if you want to use the GUI.
Category: Install Help
Installing Ubuntu 12.10
This post begins my Install steps for Ubuntu 12.10. This is my second Linux installation on this new laptop, and I am trying to document the steps that I take. Usually, the actual install process is pretty straight forward, and I don’t need to do anything special, but this one was a little different. Here are the steps that I took…
First Install on a New Dell Inspiron 17R
Ok, I have finally retired my old laptop to light duty in my wife’s service, and I have a nice brand new Dell Inspiron 17R. (Inspiron 7720) This post was originally intended to document how I initially set it up. Unfortunately, it wasn’t as straightforward as I wanted. It took me a bit of experimenting to figure it out, and this post might be a little crazy.
Inspiron 17R: Hardware Tweaks
As with any new laptop, there is new technology to learn. Fortunately, as best I can tell, most of everything is working. The only things that didn’t just work were the touchpad and the Nvidia card.
Ubuntu 12.04: Restoring Files
One of the biggest and most important steps to a new installation is to restore files. I found that grsync is a great tool that will help. Of course, this also requires a good backup.
This post will go through what I did to restore files from my backup.
First Steps in Ubuntu 12.04
I just installed Ubuntu 12.04 on my main laptop. Clicking the buttons to walk through the Ubuntu install wizard is only the tip of the iceberg. Now comes the job of installing all of the programs and tools to make it what you want.
Read on to see what I did first with my new installation…
Step By Step: Upgrading WordPress
Today, I came across a link to the WordPress download announcing version 3.0.5 via OraNA. In addition, I saw this banner on top of my admin site:
So, I guess the time has come for performing my first upgrade!
Installing My First APK from the SDCard
I finally finished my first Android application to the point that I wanted to try to start using it on my phone.
This post explains how to install applications, but I had some problems:
Bright Hub: How to install APK files on your Google Android Phone
First, with installing from the SD Card, it doesn’t say exactly what application to use. From the Market, I installed “AppsInstaller” developed by ModMyMobile.com. When I opened the program, it scanned my card, and found my application that I had uploaded via the USB cable. But, it said that the applications were blocked and offered to take me to settings. I check the “Unknown sources” option which is described as “Allow install of non-Market applications”. Then, it worked!
Also, I tried to install with adb, but I couldn’t get that to work. When I ran “./adb devices”, I don’t see any devices listed. This “G1 usb drivers for linux” post looks promising, but I haven’t finished going through all of the steps. I will try to post back when I do.
WebEx working again in Ubuntu 9.10-64bit!
It seems like this is the pattern with me and WebEx. I tinker to get it working, I upgrade, it breaks, repeat. Well, my most recent fling through this cycle started with a broken hard drive. Actually, several things started it. First, I originally thought my laptop had a 32-bit processor. When I found out the new version of PeopleSoft requires a 64-bit OS, I did some research and found that it was actually a 64-bit processor. Then, when I sent the laptop off to have the hard drive replaced, I figured that was the time to put 64-bit Ubuntu on it.
So, that is how it started, and then, I couldn’t get WebEx to work. I got Eclipse to work on 64-bit Java, Java worked in the browser, and everything was fine. I didn’t want to try to pull it all out and reinstall the 32-bit Java just to get WebEx working. So, I decided to attempt to try to install the 64-bit and 32-bit versions side by side. With some help, I got it to work:
Ubuntu Forums: 32-bit and 64-bit Firefox at the same time
The first step was installing Java. It was pretty simple and straight forward. I downloaded it from Sun’s website. Essentially, you just extract it and set your environment variables to use it. The path I chose was $HOME/bin/java.
Next, I found that you cannot use the 32-bit version of Java with the 64-bit version of Firefox. Firefox throws out all of the 32-bit plugins with this message: “wrong ELF class”. So, I installed Firefox by downloading it from Firefox’s website. I extracted it to $HOME/bin/java/firefox.
The next key was linking the Java plugin in the path where Firefox would see it. First, I linked the plugin into plugins directory:
ln -s $JAVA_HOME/lib/i386/libnpjp2.so libnpgp2.so
Once in the Firefox plugins directory, you have to make sure Firefox knows where the plugins directory is with the MOZ_PLUGIN_PATH variable.
So, to recap, I have:
- Java installed at $HOME/bin/java
- Firefox installed at $HOME/bin/java/firefox
- Java pluing installed at $HOME/bin/java/firefox/plugins from $HOME/bin/java/jdk…/lib/i386/libnpjp2.so
Then, I created an environment script that sets all of the paths and variables to make it work:
#!/bin/shexport PATH=~/bin/java/firefox:~/bin/java/jdk1.6.0_18/jre/bin/:~/bin/java/jdk1.6.0_18/bin/:$PATHexport JAVA_HOME=~/bin/java/jdk1.6.0_18/jreexport MOZ_PLUGIN_PATH=~/bin/java/firefox/plugins
Finally, I created a script to launch firefox:
#!/bin/bash cd ~/bin/java . ./env.sh firefox --no-remote -P WebEx
And, it worked!
Ubuntu 9.04
I finally upgraded to Ubuntu 9.04 last weekend. My wireless card quit working. I tried several things like reinstalling the broadcom driver and all, but it wouldn’t work in Ubuntu 8.10. I thought “”what would it hurt”, I will probably have to reinstall anyway.
The upgrade went with no problems, but it still didn’t fix my wireless problem. I finally determined that my problem was with the network-manager and not my driver because I could see it with ifconfig. So, I completely removed the network-manager, rebooted, and reinstalled. Still no luck. So, I was sitting on the couch programming with no Internet, and it just started working again!
I have noticed a few things working better! First, when I do my dual screens, I noticed that it now places my Applications bar on the laptop screen. Before, it didn’t seem to matter how I switched to dual screens, it would place my Applications bar on the other monitor.