Missing fonts when starting X-application on Linux

Recently, I got the following error message when I tried to start an X-application under Linux:

Some fonts seem to be missing in your system, you should install either xfonts-100dpi or xfonts-75dpi and then restart Xorg to get xboard running.

I got this error message despite having the packages xfonts-100dpi and xfonts-75dpi installed. After scratching my head for some time I found the problem: I was running the application via ssh with X-forwarding from a Windows PC. And the Xserver was actually running on Windows, namely the Xming application.
The problem was quickly fixed by downloading the font packages from the Xming page.

How does a computer get infected with a virus or spyware?

Unfortunately, it became quite easy nowadays to infect your computer with malware:

  1. Accepting some plug-in or toolbar installation
  2. Opening email attachments “thesisgenerator.exe”
  3. Not running the latest updates on the operating system, the browser, etc.
  4. Installing software or media from unknown sources
  5. Running your system without a firewall

Sometimes, webpages try to scare users to install a trojan. For example, there exists a trojan version of the program MacSweeper, which promises to clean your system 😛

More on the topic: http://www.computerhope.com/issues/ch001045.htm

Mit Thunderbird auf einen neuen Rechner umziehen

Hinweis: Diese Anleitung beschreibt den Umzug unter Windows. Da es sich eigentlich um das einfache Kopieren und Übertragen des Anwendungsordners (bzw. Profilordners) handelt, sollte die Anleitung sinngemäß auch bei anderen Betriebssystemen funktionieren. Wo Sie diesen Ordner in Ihrem Betriebssystem finden, ist hier beschrieben.

  1. Am Zielrechner Thunderbird und alle Add-Ons gleich wie am alten Rechner installieren
  2. Thunderbird auf beiden Rechnern beenden
  3. Sichern Sie den Profilordner von Thunderbird (zu finden unter Dokumente und Einstellungen\%Benutzername%\Anwendungsdaten\Thunderbird\... bei Windows XP oder unter Benutzer\%Benutzername%\AppData\Roaming\Thunderbird\...bei Vista und Windows7).
  4. kopieren Sie den ganzen Profilordner über einen Datenträger an den gleichen Platz auf dem neuen Rechner (bzw. bei einem anderen Betriebssystem an die entsprechende Stelle).
  5. Den Profilordner so nennen wie den bereits vorhandenen Profilordner. Diesen danach löschen.

Gendering Add-In for Microsoft Office Word 2010

In der deutschen Sprache geschlechtergerecht zu formulieren ist nicht immer einfach. Auf Initiative des österreichischen Frauenministeriums und Microsoft Österreich wurde nun vom Wiener IT-Unternehmen Rubicon ein Werkzeug für Microsoft Word entwickelt welches Texte auf einer gendersensible Schreibweise überprüft.

Das Gendering-Add-in steht als Open-Source-Software unter http://gendering.codeplex.com kostenlos zur Verfügung.

Calling a batch file from another batch file

Unlike as it is in Linux, calling a batch file from another batch file causes the first process to be overload by the new one. So, as a C64 programmer would put it, it is rather a “GOTO” than a “GOSUB”. In order to avoid this problem, put a “call” command before calling the second batch file.

call sub.bat “Hallo”
call sub.bat “World”

Shutdown/Restart using Remote Desktop

When you are using the Remote Desktop protocol to control a remote Windows computer, there is no option for Shutdown or Restart in the Start Menu.

If you actually want to restart the remote machine, you need to do press CTRL-ALT-END (STRG-ALT-ENDE on german keyboard) and then select either Shutdown or Restart.

How to enable concurrent sessions on windows machines

This enables multiple concurrent users on Windows 7:

  • enable remote desktop login in the control panel
  • install the UniversalTermsrvPatch
  • create multiple user accounts
  • each user can access the machine via remote desktop concurrently

Full explanation at http://www.zahirkhan.com/

Update: to make it work under Windows 11, check out http://woshub.com/how-to-allow-multiple-rdp-sessions-in-windows-10/