Google
 

10/18/12

Fiji: install deconvLab

When first download the plugin, it does not work. It is a zip file. Put the zip file into the plugin folder of Fiji. Then unzip it. If you don't unzip it, Fiji cannot load it.

6/5/12

Ubuntu Live CD root password and live session password for default user Ubuntu

Posted on December 11, 2009 by GoogleThem.
Categories: Linux tips and tricks.
sudo passwd ubuntu
Then create your password, you will need to already be in Terminal ;-)
To create a usable root user’s account on a live cd, you can set the root password then su. This has not been possible in previous versions of Ubuntu as their user model made you remember to sudo before each command requiring root access.
sudo passwd root
It’s easier just to sudo command for one time use, instead of creating a root user to su to.
As of Ubuntu 9.10, I haven’t been able to login with “demo” or “Ubuntu” as the password for live session username “Ubuntu”.
If you are running most other types of linux like Debian, Red Hat, Mepis, Suse and others, they have an actual root user with an account.
It is easier to gain root access permanently, for these other flavors of Linux click here to learn how.

5/15/12

Dropbox cannot sync problem.

This problem was solved for me by following this article on Dropbox support:

https://www.dropbox.com/help/72

Of which the key details were:

Permissions errors occur more frequently when using shortcuts (Windows), aliases (Mac) or symlinks (Mac/Linux) to sync folders outside of your Dropbox folder.

Often you can resolve the problem by reverting the file's sharing settings using an administrative account. Here's how:

On Mac OS X
The easiest way to fix all Dropbox settings folder permissions in Mac OS X is through the Terminal application. You can run Terminal using Spotlight or find it in the Applications > Utilities folder
Once there, copy and paste the following lines into Terminal one at a time and exactly as it is written and press the return key after each line:
sudo chown -R $USER ~/Dropbox
sudo chmod -R u+rw ~/Dropbox
sudo chown -R $USER ~/.dropbox
sudo chmod -R u+rw ~/.dropbox

You may be prompted to enter your password. Enter the password you use to log in to the computer to permit the permissions change
If you've moved your Dropbox at some point, replace ~/Dropbox in the first two lines with the path to your Dropbox folder.

This command will grant your user account read and write access to all of the files in the Dropbox settings folder. After running these commands, restart your Dropbox and it should be able to sync happily again.