-Подписка по 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?

Аудио-запись: Deutschland Uber Alles

Музыка

Четверг, 05 Февраля 2009 г. 03:43 (ссылка) +поставить ссылку
Прослушать Остановить
155 слушали
1 копий

[+ в свой плеер]

Святой1 Первоисточник записи

Deutschland, Deutschland über alles,
über alles in der Welt,
Wenn es stets zu Schutz und Trutze
bruederlich zusammenhlt
Von der Maas bis an die Memel,
von der Etsch bis an den Belt.
Deutschland, Deutschland über alles,
über alles in der Welt!

Deutsche Frauen, deutsche Treue,
deutscher Wein und deutscher Sang
Sollen in der Welt behalten
ihren alten schoenen Klang,
Uns zu edler Tat begeistern
unser ganzes Leben lang.
Deutsche Frauen, deutsche Treue,
deutscher Wein und deutscher Sang!

Einigkeit und Recht und Freiheit
fuer das deutsche Vaterland!
Danach lasst uns alle streben
bruederlich mit Herz und Hand!
Einigkeit und Recht und Freiheit
sind des Glueckes Unterpfand;
Blueh im Glanze dieses Glueckes,
bluehe, deutsches Vaterland!
 


[+ добавить в свой плеер]


Комментарии (0)Комментировать

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 :) 


Метки:  

Аудио-запись: Music

Понедельник, 02 Февраля 2009 г. 04:04 + в цитатник
Файл удален из-за ошибки в конвертации

This post is dedicated to all who think I can't be such unreally cold.  


Метки:  

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!

Метки:  

Don't forget

Среда, 21 Января 2009 г. 01:57 + в цитатник
The applications are being installed to /usr/lib

You have to search for them there.

And there is no fucking maplayer there!
I have no idea where it was installed. But when I decided to upgrade office, Sytaptic told me I should remove mplayer and smplayer. And Deludge for some reason. I agreed. I do not use them in any case. Let's see what will happen...

Метки:  

Movie

Вторник, 20 Января 2009 г. 15:26 + в цитатник
Yesterday I've decided to watch the movie. And realized that there are neither codecs, nor normal player. So today is the day for installation of the codecs.

First open file from the console:

sudo gedit /etc/apt/sources.list

Then add there following strings (or make sure they are there)

deb http://archive.ubuntu.com/ubuntu intrepid universe multiverse
deb-src http://archive.ubuntu.com/ubuntu intrepid universe multiverse


Then update the system:
sudo apt-get update

Then install video player:
sudo apt-get install mplayer

You can also install smplayer
sudo apt-get install smplayer
sudo apt-get install smplayer-themes

sudo wget http://www.medibuntu.org/sources.list.d/intrepid.list --output-document=/etc/apt/sources.list.d/medibuntu.list
sudo apt-get update
sudo apt-get install medibuntu-keyring
sudo apt-get update



Important! Codecs themselves


sudo apt-get install w32codecs libdvdcss2

or

sudo apt-get install w64codecs libdvdcss2

depending on your OS version

Also you can install the exstension for Firefox:
sudo apt-get install mozilla-mplayer

After that open ~/.smplayer/smplayer.ini and swap
vo=xv to vo=x11 to make video to play. Without this replacement only sound will play.

Метки:  

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