-Подписка по e-mail

 

 -Поиск по дневнику

Поиск сообщений в FlammenHerz

 -Интересы

computer spiel linux scheibenschiessen stress

 -Статистика

Статистика LiveInternet.ru: показано количество хитов и посетителей
Создан: 31.05.2008
Записей:
Комментариев:
Написано: 1171

Hass und Vergeltung





Hallo! Ich freue mich dich zu sehen! Erläuterungen zulassen.

Willkommen zum Gabriel Stein Weltall!

Was mach ich hier?

GIMP

Четверг, 12 Февраля 2009 г. 02:55 + в цитатник

Today I discussed with Zerg ability of using website templates with Linux. Result is not very good...

It displayes layers created in Photoshop in improper order. Also is disables masks and shows invisible  layers. Effects display different then initial files too. Maybe all this can be fixed with appropriate skills in GIMP. But I'm not sure. 

Also the question with slices is still open. Does GIMP allow to save for web? I know in has slising tool, but not sure how to use it. Also is there any software similar to Dreamweaver,but native to Linux?

Dear webmasters! Please answer if possible.

 


Метки:  

How to get process PID in program

Вторник, 10 Февраля 2009 г. 02:20 + в цитатник

Source code

#include <stdio.h>
#include <string.h>
#include <err.h>
#include <kvm.h>
#include <sys/param.h>
#include <sys/sysctl.h>
#include <sys/user.h>
#include <sys/param.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sysexits.h>

static int get_pid_of_process(char *process_name)
{
  static kvm_t *kd = NULL;
  struct kinfo_proc *p;
  int i, n_processes, processes_found;

  processes_found = 0;
   
  if ((kd = kvm_open("/dev/null", "/dev/null", "/dev/null", O_RDONLY, "kvm_open")) == NULL)
  (void)errx(1, "%s", kvm_geterr(kd));
  else {
  p = kvm_getprocs(kd, KERN_PROC_PROC, 0, &n_processes);
  for (i = 0; i<n_processes; i++)
  if ((strncmp(process_name, p[i].ki_comm, COMMLEN+1) == 0) && (getpid() != (int)p[i].ki_pid)) {

  processes_found = (int)p[i].ki_pid;
  }

  kvm_close(kd);
  }  

  return processes_found;
}

 


Метки:  

Lyrics to Ian Stuart (German Version) by Landser

Суббота, 07 Февраля 2009 г. 17:02 + в цитатник

Es ist schon lange her
Als noch die Mauer stand
Da hörten wir zum ersten Mal
Eine Band aus Eng(e)land
Skrewdriver war ihr Name
Und wir flippten völlig aus
Und was wir alle dachten
Das sprach ihr Sänger aus.

Chorus
Ian Stuart - du warst einer der Besten
Ian Stuart - wir werden dich nie vergessen

Du schriebst unsere Hymne “White Power”
Und forderstest Freiheit für Hess
Du sangst vom Kampf unserer Soldaten
Gegen die rote Pest
Wie viele Nächte haben wir durchgemacht
Im Klang alter “Klansmen”-Lieder.
“Fetch the Rope” und “The Devils Right Hand”
Immer, immer wieder.

Chorus

Die Nachricht von deinem Tod
Die konnten wir erst gar nicht glauben!
Wie konnte das Schicksal uns
Nur einen wie dich rauben?
Doch bist du jetzt auch tot
Deine Lieder werden weiterleben
Auf unseren Ian in Walhalla
Lasst uns das Glas erheben.

Chorus

Rest In Peace- Ian!
 


Метки:  

Userbars

Четверг, 05 Февраля 2009 г. 00:06 + в цитатник

 

 

 




 


Метки:  

Open Office 3

Среда, 04 Февраля 2009 г. 23:17 + в цитатник

http://aboutubuntu.ru/content/ustanovka-openofficeorg-3-ot-infra-resurs-v-ubuntu 


Метки:  

GIMP

Среда, 04 Февраля 2009 г. 20:15 + в цитатник

Can get manuals for GIMP here:

 

http://docs.gimp.org/ru/

 

 


Метки:  

At last

Вторник, 03 Февраля 2009 г. 03:53 + в цитатник

Smplayer installed and works ok. However, I still do not have appropriate soft for playing swf movies... Maybe they just not dedicated to Linux. I'll think about it later :) 


Метки:  

Howto WPA

Понедельник, 02 Февраля 2009 г. 03:59 + в цитатник

It made a success, but now it's a bit out-to-date, as it was written for Hoary.
This stuff has started getting easier to configure since Breezy and now it's really very easy to have it work.
This HowTo will help you get WPA to work, no matter what wireless card you have. (This HowTo has been tested with an ipw2200).
So, let's start:

1) Open a terminal window and type:
Code:
wpa_passphrase your_ssid your_psk
Note: your_ssid is the name of your wireless network (a.k.a. SSID) and your_psk is the password you want to use to protect your network. (Look below for an example).

2) Now copy the psk string you got as output.

3) Type:
Code:
sudo gedit /etc/wpa_supplicant.conf
Then paste this as follow:
Code:
ctrl_interface=/var/run/wpa_supplicant
#ap_scan=2

network={
  ssid="your_ssid"
  scan_ssid=1
  proto=WPA RSN
  key_mgmt=WPA-PSK
  pairwise=CCMP TKIP
  group=CCMP TKIP
  psk=your_psk
}

Note: your_psk is the psk string you got from step 1.

Here is an example:
Code:
luca@laptop1:~$ wpa_passphrase mywlan thisisthepassword
network={
  ssid="mywlan"
  #psk="thisisthepassword"
  psk=b22ec921c254c73f99b31b76ff876692ecde36839a1f2d92150829e6afcb5515
}

The red string is what you have to paste into /etc/wpa_supplicant.conf as your_psk (without quotes obviously). So you'll have something like this:
Code:
ctrl_interface=/var/run/wpa_supplicant
#ap_scan=2

network={
  ssid="mywlan"
  scan_ssid=1
  proto=WPA RSN
  key_mgmt=WPA-PSK
  pairwise=CCMP TKIP
  group=CCMP TKIP
  psk=b22ec921c254c73f99b31b76ff876692ecde36839a1f2d92150829e6afcb5515

4) Save the file and close Gedit.

5) Now we have to make wpa_supplicant load when system boots, so go back to the terminal window and type:
Code:
sudo gedit /etc/network/interfaces
6) Add the following lines in the part regarding your wireless card, as in the example below:
Code:
pre-up wpa_supplicant -Bw -Dwext -ieth0 -c/etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant

Note: "eth0" is your wireless device and "wext" is the driver; this is a kind of generic driver, so it should work with most wireless cards. If it doesn't, please try another driver, such as hostap, ndiswrapper, etc.
Here is an example:
Code:


iface eth0 inet static
address 192.168.1.15
netmask 255.255.255.0
wireless-essid my_essid
gateway 192.168.1.1
pre-up wpa_supplicant -Bw -Dwext -ieth0 -c/etc/wpa_supplicant.conf
post-down killall -q wpa_supplicant


7) Now run wpa_supplicant:
Code:
sudo wpa_supplicant -Bw -Dwext -i eth0 -c/etc/wpa_supplicant.conf
You should be online!



Troubleshooting:

You can run wpa_supplicant with -dd flag for a detailed debug output.

1) If you don't manage to connect to the AccessPoint, try to uncomment line 2 in /etc/wpa_supplicant.conf.
2) If that doesn't help, try change its value to 0 or 1.
3) If you get troubles while authenticating, try removing "RSN" and/or "CCMP" strings from /etc/wpa_supplicant.conf.
 


Метки:  

How to update OS to new version

Суббота, 31 Января 2009 г. 02:07 + в цитатник

How to update OS to new version

sudo do-release-upgrade

if it does not work, you have to edit upgrade setting in following way:

sudo gedit /etc/update-manager/release-upgrades


Prompt=never change to Prompt=normal

 

Enjoy!

 

 


Метки:  

Ubuntu releases

Пятница, 30 Января 2009 г. 16:05 + в цитатник

Ubuntu 9.10 - Karmic Koala

Ubuntu 9.04 - Jaunty Jackalope

Ubuntu 8.10 - Intrepid Ibex

Ubuntu 8.04 - Hardy Heron

Ubuntu 7.10 - Gutsy Gibbon

Ubuntu 7.04 - Feisty Fawn

Ubuntu 6.10 - Edgy Eft

Ubuntu 6.04 - Dapper Drake

Ubuntu 5.10 - Breezy Badger

Ubuntu 5.04 - Hoary Hedgehog

Ubuntu 4.10 - Warty Warthog


Метки:  

Compile

Вторник, 27 Января 2009 г. 06:34 + в цитатник

I need to learn how to compile libraries for the OS. Is Geany a Cpp compiler or not?

Also from today I know that network settings are stored in /etc/network/intefaces

But I'm still unable to put wi-fi up. I've got patch-cord, but even when I plug it to the PC I can't get in to configure it. Maybe in that case something will be clearer. Cause I still have no idea according its settings. What network mask does it use?

Oh, well. I need to talk to someone. I really really need it.


Метки:  

Repositories

Понедельник, 26 Января 2009 г. 00:26 + в цитатник

I am extremely tired.

I can install nothing from repositories. Cause each time it requires libraries. And the biggset problem is that I can install all of them except one. Also I need to install them menually from here:
http://packages.ubuntu.com/ru/intrepid/i386/libqt4-dbus/download because aptitude install loads newer versions that are not compatible with old Skype or Mplayer from repositories.

And nw I've got a problem.

I need libcups2, but it can't be installed because of libcupsys2

The conflict appear beween newer verion of libcupsys2 and libcups2. And Package manager does not allow me to install old version.

I have everything.

My version of OS calls Hardy Heron.

And newer is Interpid.


Метки:  

Key errors

Воскресенье, 25 Января 2009 г. 15:08 + в цитатник
Error:

W: Ошибка: http://apt.mucommander.com stable Release: Следующие подписи не могут быть проверены, так как недоступен общий ключ: NO_PUBKEY 030BBF253A687AFF

How to fix:

sudo gpg --keyserver subkeys.pgp.net --recv-key 030BBF253A687AFF

or

http://apt.mucommander.com/apt.key

and then run Synaptic and import key Settings->Repositories->Authentification

Метки:  

Zaurus

Суббота, 24 Января 2009 г. 23:05 + в цитатник
Zaurus is PDA on Linux.



Wikipedia

Official website

Метки:  

Firefox

Пятница, 23 Января 2009 г. 04:31 + в цитатник



Метки:  

Egal

Пятница, 23 Января 2009 г. 03:19 + в цитатник
Und wenn du fuhlen zich so kleine

Noch Gotten überwachen dich

Sie sind in Weltall nicht alleiner

Egal vertrauen uber nicht

Метки:  

Sounds

Среда, 21 Января 2009 г. 03:36 + в цитатник
Sometimes this sounds somewhere from deep inside and wake me up and makes to move on.

Ob auf einer grünen Sommerwiese
Beim allerersten Hahnenschrei
Oder in einer trostlosen Zelle
In Deinem Herzen bist Du immer frei
Und allen, die Dir nach der Freiheit trachten
bezahlte büttel, mehr sind sie nicht
Noch mit 'nem Zettel am Zeh wirst Du grinsen
über's ganze Gesicht !

FREI GEBOREN ZU WERDEN IST SCHICKSAL
FREI ZU LEBEN NICHT
UND FREI ZU STERBEN - DAS IST PFLICHT !

Das Sklavenglück der Schoßhündchen
Lässt den alten Wolf kalt
Während sie an der Leine kläffen
Zieht er stolz durch den tiefen Wald
Und nichts und niemand
Kann ihm seine Freiheit nehmen
Der Jäger kann ihn töten
Aber niemals zähmen !

Was auch immer sie versuchen
Du bleibst standhaft, Kamerad
Sieh durch die Gitter den blauen Himmel
Bis zu ihm reicht kein Stacheldraht
Kein Unglück wärt ewig
Auch die Zeit hier, wird vergeh'n
Sie können uns einsperren, sie konnen uns quälen
Sie werdn uns NIEMALS AUF KNIEN seh'n!

Метки:  

Поиск сообщений в FlammenHerz
Страницы: 14 ... 8 7 [6] 5 4 ..
.. 1 Календарь