How to fix dead Maxtor STM3500320AS DiamondMax 22 February 24, 2011 No Comments

If your Maxtor / Seagate 7200.11 does not response to the POST boot sequence check this:

http://www.msfn.org/board/topic/128807-the-solution-for-seagate-720011-hdds/

and:

http://www.msfn.org/board/topic/128807-the-solution-for-seagate-720011-hdds/page__st__100

It worked fine for me.

Richtig Buchstabieren am Telefon November 19, 2009 No Comments

Buchstabieralphabet

Buchstaben
Deutsch
Funk
Englisch
Italienisch
A
Anton
Alfa
Alfred
Ancona
B
Berta
Bravo
Benjamin
Bologna
C
Cäsar
Charly
Charles
Catania
D
Dora
Delta
David
Domodossola
E
Emil
Echo
Edward
Empoli
F
Friedrich
Foxtrott
Frederick
Firenze
G
Gustav
Golf
George
Genova
H
Heinrich
Hotel
Harry
Hotel
I
Ida
India
Isaac
Imola
J
Julius
Juliett
Jack
Jesolo
K
Kaufmann
Kilo
King
Kilo
L
Ludwig
Lima
London
Livorno
M
Martha
Mike
Mary
Milano
N
Nordpol
November
Nellie
Napoli
O
Otto
Oscar
Olivier
Otranto
P
Paula
Papa
Peter
Palermo
Q
Quelle
Quebec
Queen
Quattro
R
Richard
Romeo
Robert
Roma
S
Samuel
Sierra
Samuel
Savona
T
Theodor
Tango
Tommy
Torino
U
Ulrich
Uniform
Unde
Udine
V
Viktor
Victor
Victor
Venezia
W
Wilhelm
Whisky
William
Washington
X
Xanthippe
X-ray
Xray Ics
Xantia
Y
Ypsilon
Yankee
Yellow
York
Z
Zacharias
Zulu
Zebra
Zara
Ä
Äquator
Ü
Übermut
Ö
Ökonom
SCH
Schule
     
CH
Charlotte o. Christine
     
ß
Eszett oder hartes S
     

Sonderzeichen

Zeichen
Bezeichnung
\
Backslash
//
Doppelslash
/
Schrägstrich/Slash
@
At-Zeichen/Klammeraffe
.
dot
:
Doppelpunkt
-
Bindestrich
;
Semikolon

Pronomen (zaimki) October 31, 2009 Comments Off

pronomen.gif

Pronomen

Garmin Edge 305 under Linux Mandriva 2009.1 June 14, 2009 No Comments

How to get runnig garmin edge 305 under Linux / Mandriva? Forget all this stuff like gpsbabel, mgspoint – it just does not work and finally you do not have any training center support. The only solution at this moment is that you have to excuse yourself with Bill Gates and thanks to virtualization run your device in virtual box.

Solution:

1) Download VirtualBox from http://www.virtualbox.org/ (do not use this one coming with Mandriva)
2) Install regular RPM and make sure you are a member of the vboxusers linux group. You have to add  all users manually.
3) Install XP
4) Connect your Edge 305 device to USB (check the USB ID command lsusb) and add it to the XP virtual definition
5) Start XP – ignore reguest to install a new two USB devices
6) Download Garmin Software (USB drivers and training center)
7) Install Garmin software – enjoy time with Traning Center without fully switching to XP :)

Remarks:
1) If you are facing any problems with adding USB to VirtualBox definition – google for “VirtuaBox USB” I solved this by adding following line:

none /proc/bus/usb usbfs devgid=43,devmode=666 0 0

into the /etc/fstab file, 43 is the usb group id from /etc/group file – check it by yourself.

2) Some older VirtualBox requeires under XP to re-anable/ re-discover usb devices – MS windows magic turn off / turn on.

Edit:

3) Unfortunately the coexistence of VirtualBox and XP is a bit more complex. Garmin refuses to work in VirtualBox or to be more precise the USB driver needs to be reset every time before it will be used . In order to reset I use following command:

devcon restart @usb\vid_091e*

You can download the devcon tool from MS: http://support.microsoft.com/kb/311272

wrrrr, but finaly it works again.

my webcams June 7, 2009 No Comments

some software for webcam testing:
- camstream
- camorama
- wmwebcam
- streamer (works with modern v4l2 webcams)

streamer -c /dev/video0 -f rgb24  -r 3 -t 00:00:30 -o test.avi

Most applications don’t know how to decode the raw frames generated by the webcams, and also, many of them do not speak the V4L2 interface language. To make them work, I need the V4L application library. The trick is as follow:

LD_PRELOAD=/usr/lib64/libv4l/v4l1compat.so /usr/bin/webcam_application_or_whatsoever

For example:
LD_PRELOAD=/usr/lib64/libv4l/v4l1compat.so /usr/bin/camorama -d /dev/video0

Of course bloody Skype needs 32bit library! In Mandriva there are two rpms : libv4l (64bit – /usr/lib64/libv4l/v4l1compat.so) and libv4l0 (32bit –   ‎/usr/lib/libv4lconvert.so.0)

Happy  testing
Beny

PS:

Stolen from Internet, has to be fixed for Mandriva

Name the script ‘$HOME/bin/fix_webcam_app’ and then symlink your cam-using apps to it. For example:
ln -s $HOME/bin/fix_webcam_app $HOME/bin/skype
ln -s $HOME/bin/fix_webcam_app $HOME/bin/camorama
or whatever. As long as $HOME/bin comes earlier in your path than the path to
the real app things should work. (Note my script assumes the real apps live in
/usr/bin/. That might not be true for your skype install.)

– Script to fix
#!/bin/bash
exe=`basename “$0″`
LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so “/usr/bin/${exe}” “$@”

64 Bit Flash player @ Mandriva 2009 June 6, 2009 No Comments

http://forum.mandriva.com/viewtopic.php?t=99874&sid=b56cf6a32fb139fc78102a9378537b97

a bit modified script from my side (works perfectly):

# #!/bin/bash

# # Script created by

# # Romeo-Adrian Cioaba romeo.cioaba@spotonearth.com

# # Released under GPL

# # Adapted from ubuntu for mandriva by V.Riboulet

# # Further kludging by T.White

# DO NOT RUN AS ROOT

# Run from a folder in your home directory

# Set some variables


FLASH_VER=Flash Player 10 linux-x86_64 Alpha
FLASH_LOC=http://download.macromedia.com/pub/labs/flashplayer10/
FLASH_GZ=libflashplayer-10.0.d20.7.linux-x86_64.so.tar.gz
FLASH_LIB=libflashplayer.so

echo “Downloading $FLASH_VER”

wget “$FLASH_LOC$FLASH_GZ”

echo “Uncompressing $FLASH_VER”

tar zxvf $FLASH_GZ

#echo “Please provide the root password so that filesystem and package operations can be performed”

#su -

echo “Stopping any Firefox that might be running”

killall -9 firefox

echo “Removing any other flash plugin previously installed:”

urpme flash-player-plugin gplflash libflashsupport gnash gnash-firefox-plugin gnash-konqueror-plugin swfdec-gnome swfdec-mozilla nspluginwrapper nspluginwrapper-i386

# Not sure what the 32 bit official rpm from adobe

# is called but that needs to be urpme’d here too.

# I’m sure that the 64 bit nspluginwrapper should be urpmi’ed here

# So urpmi nspluginwrapper-x86_64 or whatever it’s called?

rm -f /usr/lib64/mozilla/plugins/*flash*


rm -f ~/.mozilla/plugins/*flash*
rm -f /usr/lib64/firefox/plugins/*flash*
rm -f /usr/lib64/firefox-addons/plugins/*flash*
rm -rfd /usr/lib64/nspluginwrapper

# There are also other directorys that the flash plugin could be installed


# a seach for libflashplayer.so & nspluginwrapper
# would be nice here and then removing, Instead of guessing

echo “Installing $FLASH_VER”


mv $FLASH_LIB /usr/lib64/mozilla/plugins/
# There should also be some soft links created here instead
# And I think that the flash plugin should be installed in
# /usr/lib64/flash-plugin/libflashplayer.so or /usr/lib/flash-plugin/libflashplayer.so
# So that /usr/lib64/mozilla/plugins/libflashplayer.so
# Is a soft link (using ln -s)
# That way, Apps such as Opera can find it

exit

rm $FLASH_GZ

echo “Done :-)

echo “$FLASH_VER installed.”

# “Launch Firefox and go to about:plugins”

firefox “about:plugins”

### EOF ###

Azurewave AD SP400 CI (VP-1041) under Mandriva 2009.1 May 16, 2009 No Comments

hg clone http://mercurial.intuxication.org/hg/s2-liplianin
ln -s s2-liplianin s2
cd s2-liplianin
make xconfig : under the branch of DVB Adapters exclude at least the fireDTV, in order to avoid issues during source compilation

make
sudo make install
=> "reboot" somehow
kaffeine 0.8.7 works fine

Remark:
after changing of the kernel you have to conduct:
make distclean and then make xconfig
in order to re-read the new kernel source
distclean       - Cleans compiled files from the tree,
                  latest used configuration and kernel
                  version.
make clean can be also helpful to rebuild all modules
make clean        - Cleans compiled files from the tree,
                  but keeping the latest
                  used configuration and kernel version

Mandriva update 2009.0 PWP to 2009.1 Spring No Comments

Error message:

unable to import pubkey file of “Main” ….

Info given at Errata does not really help

My workaround:

remove old keys: urpme gpg-pubkey

add new ones: urpmi.addmedia –distrib /media/cdrom/x86_64/

Now to Easy Urpmi & download standard mirrors

Conversion March 28, 2009 2 Comments

Just to memorize

Blackberry:

4×3 aspect:

ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x240 -aspect 4:3 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4

16×9 aspect:

ffmpeg -i $1 -f mp4 -vcodec mpeg4 -b 400k -r 24 -s 320x180 -aspect 16:9 -acodec aac -ar 22050 -ac 2 -ab 48k $1.mp4

Czesci zdania March 14, 2009 No Comments

Subjektpodmiot

Podmiot – część zdania, która w zdaniu w stronie czynnej oznacza wykonawcę czynności wyrażonej orzeczeniem, obiekt podlegający procesowi wyrażonemu orzeczeniem lub znajdujący się w stanie wyrażonym orzeczeniem.

am geläufigsten ist die Auffassung, dass es sich um die Funktion, die Rolle handelt, die eine Wortgruppe (ein Satzglied) im Satz ausübt. In sehr vielen Sprachen (= Nominativsprachen) steht das Subjekt im Nominativ und bildet mit dem Prädikat die Kernaussage des Satzes. Es handelt sich dabei um das Satzglied eines Satzes, das mit der Frage “Wer oder was?” erfragt werden kann.

Prädikatorzeczenie

Najczęściej jest wyrażone osobową formą czasownika (jest to wtedy tzw. orzeczenie czasownikowe), np. Jego żona biega codziennie.

In der deutschen Sprache, auf welche sich die folgenden Ausführungen beziehen, enthält das Prädikat immer genau eine finite Verbform.

Das Prädikat kann aus einem Wort (einteiliges Prädikat) oder aus mehreren Wörtern bestehen (mehrteiliges Prädikat). Mehrteilige Prädikate können ausschließlich aus Verben oder auch aus Verben und anderen Wortarten bestehen. Der Teil des Prädikats, der nicht aus Verben besteht, heißt Prädikativum.

Objektdopelnienie

Dopełnienie jest to część zdania oznaczająca pasywny przedmiot czynności wyrażonej orzeczeniem zdania w stronie czynnej. Odpowiada na wszystkie pytania przypadków z wyjątkiem mianownika i wołacza, czyli: kogo? czego? komu? czemu? kogo? co? z kim? z czym? o kim? o czym?

Ein Objekt (Satzergänzung) bezeichnet in der Grammatik eine Ergänzung, auf die sich das Prädikat bezieht (bzw. die – in einer anderen Bedeutung – selbst Teil des Prädikats/der Satzaussage ist). Es handelt sich um eine Kategorie der Syntax. Objekte können aus einem oder mehreren Wörtern bestehen. Ein Objekt kann aus mehreren Wortarten (Pronomen, Substantiven, Numeralen) oder anderen syntaktischen Strukturen (Infinitive mit zu oder Gliedsätze) bestehen.

Substantiv – adverbiale BestimmungOkolicznik
Okolicznik – część zdania, która pełni funkcję określającą czasownik. Uzupełnia czasownik]] o dodatkowe elementy, bez których wypowiedź jednak byłaby niekompletna. Pozostaje on ze swoim członem nadrzędnym w związku przynależności. Odpowiada na pytania miejsca, czasu, przyczyny, celu, warunku.

Die adverbiale Bestimmung (auch Adverbial, Adverbiale, Adverbialbestimmung, Umstandsbestimmung oder Umstandsangabe) ist ein Begriff aus der Grammatik und bezeichnet ein Satzglied bzw. eine Satzgliedergänzung. Sie ist grammatikalisch nicht notwendig. Sie bestimmt die Umstände eines Geschehens genauer. Adverbiale Bestimmungen ermitteln folgende Fragen: Wo? Wann? Zu welchem Ziel? Womit? Wie? Warum? usw.
AttributPrzydawka
to część zdania określająca rzeczownik. Może być wyrażona przymiotnikiem (np. ładny kwiatek), zaimkiem przymiotnym (np. mój kwiatek), imiesłowem przymiotnikowym czynnym (np. rosnący kwiatek), imiesłowem przymiotnikowym biernym (np. podlany kwiatek), liczebnikiem (np. podlałem już trzeci kwiatek), wyrażeniem przyimkowym (np. sweter z wełny). Przydawka odpowiada na pytania: jaki? jaka? jakie? który? która? które? czyj? czyja? czyje? ile? z czego? Read the rest of this entry »