Die Datei hiberfil.sys entfernen

Die Kommandozeile mit Administrationsrechten starten.
cmd.exe
Zum entfernen der hiberfil.sys folgendes eingeben.
powercfg -h off
Zum wieder einschalten der Tiefschlaffunktion folgendes eingeben.
powercfg -h on

Die Kommandozeile mit Administrationsrechten starten.
cmd.exe
Zum entfernen der hiberfil.sys folgendes eingeben.
powercfg -h off
Zum wieder einschalten der Tiefschlaffunktion folgendes eingeben.
powercfg -h on

Erstellen von MIME Code für den SSL Zugriff
printf "{Benutzername}" | mimencode
printf "{Passwort}" | mimencode
Verbindung zu einem SMTP Server
netcat localhost smtp quit
Verbindung zu einem SMTP Server mit SSL
openssl s_client -connect localhost:smtps
auth login
{Benutzername als MIME Code}
{Passwort als MIME Code}
mail from: {Absender}
rcpt to: {Empfänger}
data
{Nachricht}
.
quit
Verbindung zu einem IMAP Server
netcat localhost imap
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout
Verbindung zu einem IMAP Server mit SSL
openssl s_client -connect localhost:imaps
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout
Verbindung zu einem POP3 Server
netcat localhost pop3
user {Benutzername}
pass {Passwort}
list
quit
Verbindung zu einem POP3 Server mit SSL
openssl s_client -connect localhost:pop3s
user {Benutzername}
pass {Passwort}
list
quit
Verbindung zu einem SIEVE Server
netcat localhost sieve logout
Ein Auszug aus /etc/protocols zeigt die Protokolle für Mail Dienste.
| Name | Port/Protokoll | Alt. Name | Beschreibung |
|---|---|---|---|
| smtp | 25/tcp | ||
| ssmtp | 465/tcp | smtps | # SMTP over SSL |
| imap2 | 143/tcp | imap | # Interim Mail Access P 2 and 4 |
| imap2 | 143/udp | imap | |
| imap3 | 220/tcp | # Interactive Mail Access | |
| imap3 | 220/udp | # Protocol v3 | |
| imaps | 993/tcp | # IMAP over SSL | |
| imaps | 993/udp | ||
| pop3 | 110/tcp | pop-3 | # POP version 3 |
| pop3 | 110/udp | pop-3 | |
| pop3s | 995/tcp | # POP-3 over SSL | |
| pop3s | 995/udp | ||
| cisco-sccp | 2000/tcp | sieve | # Cisco SCCP |

The Problem
In order to show the error i made some screenshots from an RSS view in Firefox.
As you can see the MIME Icon is missing.
The image source link from the source code.
moz-icon://goat?size=16&contentType=audio/mpeg
The Fix
The MIME Icon is shown after the fix. As you can see it is an audio icon.
The problem is that Firefox can’t find the MIME type icons. This Shell-Script copies the MIME icons from the Humanity Icon Theme into the .icons folder in your home directory so Firefox can find them.
#!/bin/bash
ISOURCE=/usr/share/icons/
ITHEME=Humanity
for size in 16 22 24 32 48;
do
mkdir -p $HOME/.icons/$ITHEME/mimes/$size;
for file in $ISOURCE/$ITHEME/mimes/$size/*.svg;
do
ln -s $file $HOME/.icons/$ITHEME/mimes/$size/`basename $file .svg`.png;
done;
done;
Script Author: Ilja Sekler
Create a new script file and run it in your terminal or download it and run it in your terminal.
Mehr…
Create your own Tilt & Shift Photos with the online TiltShift Generator. Above are some Photos i run through the Generator.


Keith Loutit is an great Artist in the making of Tilt & Shift Videos you can watch them von Vimeo.
Bathtub II from Keith Loutit on Vimeo. He now got his own page where you also can watch his work.
A set of icons for AutoKey on the Gnome Desktop with Ubuntu Linux 10.04.
Screenshot of the Ambiance Theme

Screenshot of the Radiance Theme

Step 1
Download the icon file and open the target folder.
Press the keys ALT + F2 and enter
gksu nautilus /usr/share/pixmaps
Copy the desired *.png file into this folder.
Step 2
Press the keys ALT + F2 and enter
gksu gedit /usr/share/pyshared/autokey/gtkui/notifier.py
now change the line
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon.png"
to
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon-status-radiance.png"
or
STATUS_ICON_FILE = "/usr/share/pixmaps/akicon-status-ambiance.png"
Step 3
In order to see the new icon you need to restart AutoKey.
Downloads
Further Informations of AutoKey