Tag Archives: Control Alt F2

Testing, another way to help your favorite FOSS project

I’ve done some testing before, but this time I want to document it here, so I can come back later and remind myself of some of the critical steps, and so others new to testing can get the confidence to start contributing in this way as well.

I’m lucky in that I have some extra computers I can use as testing machines. But when I didn’t, I used virtual machines, and those aren’t too difficult to set up. However, I’ll discuss that another time.

In general, please read the /topic in your development IRC channel, then ask about testing, or join the testing channel if there is one. Often you’ll be given bug numbers to test for a specific package — please be sure to comment completely in the actual bug report, not just give feedback in the channel. Be sure to ask what information is necessary. ISO testing is another place where folks are needed; again, your devel channel /topic should give you some good information. And don’t forget to join and read the relevant lists as well; no one can be in IRC all the time.

Right now, some packages need testing in the next distribution release. I prefer using the command line for things like this, because 1. in the console, upgrades happen “under” the desktop, so config files are updated cleanly, and 2. it is much faster. So first, the upgrade.

If your computer is already on, log out of your session. At the login screen, rather than typing in your password, hit Control + Alt + F2. Then log into first your computer with your username and password, then

sudo update-manager -d

This updates all your repositories to the development release. Next, the start the actual upgrade:

sudo do-release-upgrade -d

You’ll have to OK a few things, so it’s not entirely unattended. After the packages are all downloaded, the upgrade still takes quite awhile. Sometimes I start this at night, and just check on things in the morning.

Next, you’ll need to install the package, or build the application from a tarball, or source. Depending on your distro tools, this might vary a bit.

Building from source

For Amarok, Myriam has a great blog post about how to build from git: http://blogs.fsfe.org/myriam/2009/09/26/compiling-amarok-from-git-locally-full-summary/, so I won’t cover that. If you doing a local build of a different package, the steps will be similar. Consult the documentation for details.

Install from a PPA

To install a package from a PPA, in Debian-based distros, there is an easy way to add it (addrepo in Debian):

sudo add-apt-repository ppa:

This will download and register the public key, as well as adding the repository. Then you can simply install the package via the command line or using the GUI tools you prefer.

Build from a tarball

To get the tarball, cd to the directory …read more
Source: FULL ARTICLE at Planet KDE