Categories
Apple Errors Software

Create Bootcamp partition

Today I had to reinstall Bootcamp, and thus create a new Windows partition.

Trying the Bootcamp setup wizard, I got the same error as I had before – “Your disk cannot be partitioned because some files cannot be moved”.

I tried to Zero-Out-Data, overwriting all deleted data on the disk with 0’s. Yet this did not seem to solve the problem.

After deleting some big files, like my heroes & 24 episodes, I tried again. Still nothing.

I then remembered I had WoW Wrath of the Lich King installed (7ish Gb). Deleting the WoW folder and trying again, did solve the problem. I didn’t even have to zero-out-data again.

So, basicly, deleting big files (folders?!) seems to solve the problem too.

Categories
Apple Games Software Windows

WoW:WotLK 3.0.1 installers

Here’s a list of all World of Warcraft: Wrath of the Lich King installers:

English: WinMac

French: WinMac

German: WinMac

Spanish: WinMac

The download is 2.04Gb (on a Mac), I haven’t started the download on a Windows yet.

And yes, you will still need a beta invitation before being able to login!

You’ll find me under Tuinslak or Isazi on the EU beta realm.

As for the character copy, it was done within 10 minutes. Just 5 hours left on the download. 🙁

Edit: same size on a Windows – 2.04Gb. The download contains the setup.exe and the installer.app, so you should be able to copy it to any OS.

Categories
Apple

Namely + hiding its icon

I recently started to use Namely but having its icon in my dock was quite annoying (like to keep my dock clean).

Namely is an app that let’s you launch any application by typing in a few letters of that program’s name. Just type in a key combination ([Apple]+E here), and Namely’s window pop ups.

After a bit of Googling I found that it was possible to hide icons from the dock.

First of all, configure Namely, make sure it pop ups if you type in your key combo. If you don’t do that now, you’ll have problems to configure it later.

Once that’s done, quit Namely.

Then go to the Namely.app folder (using Terminal), and add these 2 lines

1
2
<key>LSUIElement</key>
<string>1</string>

between <dict> and </dict>

This is what it should look like:

(Nano is the editor I use, but you can also use vi or vim too, depending what’s installed + you might have Namely installed in a different directory)

1
2
Nazgul:~ yeri$ cd /Applications/Utilities/Namely.app/
Nazgul:Namely.app yeri$ nano -w Contents/Info.plist

This is how my Info.plist looks like:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
< ?xml version="1.0" encoding="UTF-8">
< !DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>CFBundleDevelopmentRegion</key>
        <string>English</string>
        <key>CFBundleExecutable</key>
        <string>Namely</string>
        <key>CFBundleIconFile</key>
        <string>Namely</string>
        <key>CFBundleIdentifier</key>
        <string>com.asagoo.namely</string>
        <key>CFBundleInfoDictionaryVersion</key>
        <string>6.0</string>
        <key>CFBundlePackageType</key>
        <string>APPL</string>
        <key>CFBundleSignature</key>
        <string>????</string>
        <key>CFBundleVersion</key>
        <string>2.5.1</string>
        <key>NSMainNibFile</key>
        <string>MainMenu</string>
        <key>NSPrincipalClass</key>
        <string>NamelyApplication</string>
        <key>LSUIElement</key>
        <string>1</string>
</dict>
</plist>

Notice line 25 & 26.

And that should be it — double click Namely to start it up, hit your keyboard shortcut, and it should pop up!

Namely

No icon in my dock. 🙂

Categories
Apple

Hide your Printer icon in Mac OS X.5

I recently came upon this post; enjoy it. 😉

Makes life just that bit easier!

Categories
Apple Linux Software

Rsync backups

My own simple rsync backup ‘script’.

You’ll need a rsync server, something to backup, and ssh-agent running to ease the process (or, fill in your password each time).

Add the following lines (using a terminal text editor) to a text file (“.rsync” for example, hidden files under Unix-like systems), and chmod +x $file.

1
2
3
rsync --archive -uv --exclude-from=/home/you/.rsync_exclude \
--rsh="ssh -p 222" --delete --stats --progress /Users/you/Documents/ \
you@remost.host.com:/home/you/remote-backup-directory

This will upload any files in /Users/you/Documents to /home/you/remote-backup-directory.

It will use ssh on port 222 to transfer the files.

Just execute ./.rsync (if that’s the name of your file) to run it.

If you make any changes (locally), and run this, the changes will be applied on the remote server (e.g. file changes, renames, deletes, …) — this will delete files on the remote server if you’ve deleted them locally!

The file .rsync_exclude is optional, it includes all files or directories that should NOT be uploaded

This is what I have in my .rsync_exclude:

1
2
Nazgul:~ yeri$ cat .rsync_exclude
Parallels/*

Simple as hell, and yet so handy!