Matthew Woodward // * CFML, Grails, and Java Developer
* Principal IT Specialist, US Senate
* Open BlueDragon Steering Committee Member
* All-Around Geek
This time around Ubuntu 10.04 is touting some great UI and design changes. Moreover, this being an LTS release, there are all the more reasons to go with the fresh install route. So if you decide to do so, come the 29th, here are some of the Ubuntu applications that you might want to install on a fresh Lucid Lynx install.
Nice list of stuff you'll want to install after doing a fresh installation of Ubuntu 10.04. If you haven't yet tried it, Chrome is REALLY nice on Linux (though Firefox is still my daily driver, it's nice to have an alternative browser particularly as a web developer), VLC is a must have, and if you weren't aware Ubuntu no longer ships with The GIMP pre-installed.
I could take or leave the Checkgmail but it's a nice example of what can be done with the new MeMenu in 10.04, but Gnome Do is great if you haven't tried it (I just learned about this one myself a couple of weeks ago), Beagle is a really nice Spotlight-like app, and hey, if you want your Linux box to look like a Mac, there's even a Dock app.
The only one not on this list that I think should be there is Back In Time (http://backintime.le-web.org/) which is very similar to Time Machine on the Mac. I have yet to try it on 10.04 but it was just set and forget on 9.10 so hopefully it works on 10.04.
From Knowledge76
Jump to: navigation, searchRestoring Your System76 Computer
System76 Netbook Customers see Restoring Your Netbook. This How To is for System76 Laptops and Desktops
System76 computers use a standard Ubuntu installation disc and the System76 Driver to fully restore your system to factory settings. This action will reformat your hard drive and remove all data from the computer. Backup any personal files in your home directory before installing.
Directions
Download Ubuntu 10.04 LTS from www.ubuntu.com. You can also request free installation CD's from the Ubuntu website.
This action will reformat your hard drive and remove all data from the computer. Backup any personal files in your home directory before installing.
- Insert the Ubuntu Installation CD
- Boot from the CD by pressing either the Escape key, F8, F10, F11, or F12 (Depends on your system)
- Complete the installation with your desired options
- Log into your newly installed system
- Connect to the internet (verify you're connected by going to a website)
- Go to System > Administration > Update Manager
- Click "Check" and then "Install Updates"
- If you have nVidia or ATI graphics in your system go to System > Administration > Hardware Drivers to install nVidia's or ATI's proprietary driver
- Reboot
- Download the latest System76 Driver from this page (click the second link from the bottom)...
http://planet76.com/repositories/
- Double click on the downloaded package to install
- Go to System > Administration > System76 Driver
- Choose the Restore tab and click Restore. Restore will take a few minutes.
That's it - your system is fully restored!
System76 Driver Information
For detailed information about the System76 Driver click here
Retrieved from "http://knowledge76.com/index.php/Restoring_Your_System"
If you have a System76 machine and want to do a clean install of Ubuntu 10.04, this outlines how to restore the System76 drivers. Quick and painless.
The Ubuntu team is pleased to announce Ubuntu 10.04 LTS (Long-Term Support). This release incorporates the Desktop Edition and the Server Edition. The Server Edition can be used on physical servers, on Ubuntu Enterprise Cloud (UEC), and on Amazon's EC2 public cloud. Codenamed "Lucid Lynx", 10.04 LTS continues Ubuntu's proud tradition of integrating the latest and greatest open source technologies into a high-quality, easy-to-use Linux distribution.
Looks like it's a Friday night upgrade for me! (I know how to party.)
I've been using the beta on my old ThinkPad T60p and it's been working great, so my System76 Serval Pro will likely get the new hotness tonight.
Make sure and read the links in the full post on the mailing list to see all the new features. Congrats to the Ubuntu team for another fantastic release.
If you use Eclipse and Subclipse, chances are you've see the "Subversion Native Library Not Available" error (see attached pic). Things tend to work fine even if you see that error (at least they did for me), but I finally took the time the other night to get to the bottom of it and fix it in the easiest way possible.
First, do this:sudo apt-get install libsvn-javaNext, do this:
sudo cp /usr/lib/jni/* /usr/libNow I said "easiest way possible" above because you can monkey around with eclipse.ini -VMARGS and all sorts of other nonsense, but chances are none of those solutions will work if you actually want to use a launcher to launch Eclipse.
So do yourself a favor, drop the files where Eclipse expects to find them, and get on with your life. (As you can tell, I spent more time on this than I wanted to, so I'm simply trying to help others avoid this same fate.)
./install.sfx.3763: not foundSince I'm not the one who ordered the cloud server I wasn't sure if it was 32- or 64-bit, but given the modest amount of RAM we're allocating I was guessing it was 32-bit. Turns out I was wrong. I decided to try the 64-bit Java installer and it worked fine.So if you get the mysterious install.sfx error when installing Java you're probably using the installer for the wrong architecture. Grab the "other" installer for your situation and it'll likely solve the problem. I guess you could also ask the person who ordered the server whether it's 32- or 64-bit, but where's the adventure in that?
I've been using vpnc as my VPN client on Ubuntu for quite some time now, but vpnc allows for split tunneling (meaning I'm on the VPN but I can still access my local network), and, well, let's just say some network security folks don't like that. ;-) I looked into disabling split tunneling on vpnc and I didn't find any conclusive answers, so it was time to look for an alternative VPN client for Cisco VPNs.
Cisco AnyConnect is a VPN client that can (in theory) be installed from a web browser on any operating system, provided your VPN server is configured to support it. If you want to check, hit your VPN server in a browser. If you see a login screen, log in with your normal VPN credentials and you should be able to install AnyConnect from there. All isn't rosy with this picture on Linux, however. The browser-based install doesn't work (or didn't for me at least), and while you can download a Linux version of the installer, the installer runs fine but the client throws some errors when you attempt to connect to your VPN. Specifically in my case it was throwing a "no valid certificates" error or something along those lines. As usual there's a relatively simple solution, but it took some digging. AnyConnect relies on libraries that are distributed with Firefox, but AnyConnect expects these libraries to be located under /usr/local/firefox. On Ubuntu they're located elsewhere so AnyConnect chokes when it's trying to connect. Once you have AnyConnect installed, go through the following steps to get things working. Also make sure the daemon is running; check using ps -ef | grep vpn and if it isn't running, do sudo /etc/init.d/vpnagentd_init start to fire that up.That's it--you should be in. Note that if you're used to using a profile file with a different VPN client, AnyConnect (at least based on my 1/2 day of experience) seems to work differently, so a user name and password should be all you need. If you're using a SecurID token of course you'll use that as your password.