Jun 04

Roseetje.nl

Print
Feb 16

How do I use the Grep command with regular expressions under Linux operating systems?

http://www.cyberciti.biz/faq/grep-regular-expressions/

Print
Nov 21

deleting mail in Unix

type mail

d * will remove all mail

d 1 3 deletes the 1st and 3rd messages
d 1-3 deletes messages 1 through 3
d deletes the current message

Print
Nov 08

flash_builder_logo-250x250

Launching Adobe products on Mac OS X after system upgrade, migration or restore, results in error “Licensing for this product has stopped working”

Solution 1: Delete the FLEXnet Publisher folder

1. Quit all Adobe applications.
2. On your startup disk locate and delete the following folder:
/Library/Preferences/FLEXnet Publisher
3. Launch your Adobe application(s).

Note: There is also a folder named FLEXnet Publisher folder in the /Library/Application Support folder. You must not rename this one; all of your Adobe applications will stop working. Make sure you are in the /Library/Preferences folder.

This worked fine for me!
More details: http://kb2.adobe.com/cps/512/cpsid_51260.html

Print
Nov 01

the disc permissions are set like this:
me custom
staff custom
everyone custom

also there is a lock icon on the left hand side of the drive icon…

ls -aldeO /Volumes/”drive-name”

Put the name of the drive in the above and keep the quotes. This will list all permissions, ACLs and flags on the drive.

Output:
drw-rw-r-T 46 root admin uchg 1632 Jun 30 16:30 /Volumes/Vault

Actions:
sudo chflags nouchg /Volumes/”drive-name”
chmod 755 /Volumes/”drive-name”

And fixed!

taken from: http://discussions.apple.com/thread.jspa?threadID=1590482

Print
Aug 27

If you need to include single quotes inside a single quoted string you might try adding a backslash like most programming languages but that doesn’t work.

In the end the actual “escaping” is: ‘”‘”‘ (five quotes).

To make sure you get it ‘ ” ‘ ” ‘ without the spaces.

To take it apart:

* The first single quote ends the current single quoted string
* The double quote starts a double quoted string
* The second single quote is the one we’re escaping
* And the end of the double quoted string
* And reopening the origional single quoted string

Found on http://laptop006.livejournal.com/43340.html

Print
Jul 24

Print
Jul 21

Well quite easy, just run sudo apt-get install linux-server linux-headers-server
Restart
Done

Print
Nov 18
freelance.nl

freelance.nl

Print
Oct 14
Eye Bee Em

Eye Bee Em

The first thing to do is verify that our operating system isn’t supported officially by IBM WebSphere Application Server 6.1. You can check on that link http://www-1.ibm.com/support/docview.wss?rs=180&uid=swg27007659

After downloaded or put the CD on drive, you need to extract the files from the tar.

Once you have extracted the files the first thing you want to do is run the launchpad.sh script.

read more

Print