Sie sind nicht angemeldet.

Lieber Besucher, herzlich willkommen bei: Linux Forum Linux-Web.de. Falls dies Ihr erster Besuch auf dieser Seite ist, lesen Sie sich bitte die Hilfe durch. Dort wird Ihnen die Bedienung dieser Seite näher erläutert. Darüber hinaus sollten Sie sich registrieren, um alle Funktionen dieser Seite nutzen zu können. Benutzen Sie das Registrierungsformular, um sich zu registrieren oder informieren Sie sich ausführlich über den Registrierungsvorgang. Falls Sie sich bereits zu einem früheren Zeitpunkt registriert haben, können Sie sich hier anmelden.

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

1

29.05.2005, 19:14

Wie installiere ich nen TREIBER??

Ich möchte meinen Treiber meiner WLAn karte installieren.
Auf der CD gibt es ein verzeichniss namens "Linux OS Driver" dann "RT2500STA-Linux1.2.0" da gibt es dann nochmal 2 verzeichnisse:
- Module
- Utility
Und darin sind so komische dateien wie: .app .cpp .h
Was soll ich jetzt tun?
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

2

29.05.2005, 19:38

Da gibt es bestimmt auch eine README, oder?

Prinzipiell:

1. Kernel-Sourcen installieren (passend zum laufenden Kernel!!)
2. C++ Compiler und Entwicklertools installieren
3. Modulverzeichnis auf Platte kopieren (z.B. ins root-Homeverz.)
4. ./configure (wenn es das gibt, daher vorher README lesen)
5. make
6. make install
7. Modul per Hand laden: modprobe <modul>
8. Testen
10. fest in der /etc/modules.conf bzw. /etc/modprobe.conf verdrahten


Das ist der allgemeine Ablauf, aber vielleicht findet sich ja noch jemand hier, der mit der speziellen Karte Erfahrung hat. Eventuell können die mitgelieferten Treiber(=Module) des Distributions-Kernels schon ausreichend sein.

Welche Distribution? Welche Distribution ist "Kettig"? :keineahnung: )

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »canis_lupus« (29.05.2005, 19:40)


Pharao

2 sexy 4 my Linux

  • »Pharao« ist männlich

Beiträge: 4 214

Wohnort: Hirschhorn / Neckar

Beruf: Schüler

  • Nachricht senden

3

29.05.2005, 19:39

Ich würde wetten, dass es dort eine README gibt...
close the world - open the next


"funzt" und jegliche Abwandlung davon ist kein Wort, egal wie oft du es dir einredest, verdammt nochmal!

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

4

29.05.2005, 20:19

Jo es gibt ne README.
Aber die verstehe ich nicht :(
Habe sie mal angehängt :)
Wo sind die Kernel-Sourcen?
Welchen compiler und wo?

Was ist Distribution?
Ich habe einfach meine heimat hingeschrieben?
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

Pharao

2 sexy 4 my Linux

  • »Pharao« ist männlich

Beiträge: 4 214

Wohnort: Hirschhorn / Neckar

Beruf: Schüler

  • Nachricht senden

5

29.05.2005, 21:39

>Aber die verstehe ich nicht Beleidigt
was verstehst du nicht?

>Wo sind die Kernel-Sourcen?
/usr/src

>Welchen compiler und wo?
den den du brauchst und vorher installierst. gcc / g++

>Was ist Distribution?
Ein Paket von Software mit Linuxkernel,.. SuSE, Debian, Fedora,...


Es wird dringend Zeit, dass du dir erstmal ein paar Bücher / Tutorials zum Thema Linux antust.
Vorher hat es keinen Wert weiter zu machen.
close the world - open the next


"funzt" und jegliche Abwandlung davon ist kein Wort, egal wie oft du es dir einredest, verdammt nochmal!

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

6

29.05.2005, 21:46

Da Du immer noch nicht den Namen deiner Distribution (Der Name deines Linux: SuSE, RedHat, Fedora, ....) raus rückst, sage ich pauschal: Befrage das Installationstool deiner Distribution.
Installiere die Kernel-Sourcen und den gcc, make, ... (also die C/C++ Entwicklungstools)
Solltest Du schonmal ein Online-Update gemacht haben, tue es jetzt nochmal, damit die Sourcen des Kernels zum laufenden Binärkernel passen!

Kopiere dann wie in der README die Datei RT2500STA-Linux-1.1.0.tgz auf die Platte. Öffne eine Shell und tippe:

tar -xvzf RT2500STA-Linux-1.1.0.tgz
cd RT2500STA-Linux-1.1.0/Module
make config
make all

Erstmal bis hierher.

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

7

30.05.2005, 07:00

Zitat

Da Du immer noch nicht den Namen deiner Distribution (Der Name deines Linux: SuSE, RedHat, Fedora, ....) raus rückst, sage ich pauschal: Befrage das Installationstool deiner Distribution.
Installiere die Kernel-Sourcen und den gcc, make, ... (also die C/C++ Entwicklungstools)
Solltest Du schonmal ein Online-Update gemacht haben, tue es jetzt nochmal, damit die Sourcen des Kernels zum laufenden Binärkernel passen!

Kopiere dann wie in der README die Datei RT2500STA-Linux-1.1.0.tgz auf die Platte. Öffne eine Shell und tippe:

tar -xvzf RT2500STA-Linux-1.1.0.tgz
cd RT2500STA-Linux-1.1.0/Module
make config
make all

Erstmal bis hierher.

Ich habe aber auf der CD des Herstellers nirgens eine .tgz
Nur (wie schon gesagt) .h .app .cpp ...
So wie ichs verstanden habe, muss ich die mit nem C++ kompiler (QL) Compiliren.

Das mit dem Update ist gut ;)
Meine WLAN karte geht in Windows nicht (darum hadelt das thema)
Und dann kann ich nicht Updaten :)

So ich habe mich soweit erkundigt und verstanden:
- Entpacken der GEPACKTEN Datei auf die festplatte
- Den qt-x11-free-3.2.1 besorgen und installieren#
Doch wo ist die .profile Datei?
Oder was ist shell?

Ja bücher und das alles kommt später!
Doch ich muss zuerst mal Internet über mein WLAN hinbekommen, um überhaupt mal weiter zukommen. Das ist nicht mein PC nur notweise. Und da ich mir das leichter vorgestellt habe, geht halt mehr zeit drauf.

Ich habe SUsE.
Welches dieser Distribution ist eigentlich das bessere?

Hier die INSTALL datei des QL:

Zitat

INSTALLING Qt Version 3.2.1 FOR X11


You may need to be logged in as root, depending on the permissions of
the directories where you choose to install Qt.


1. Unpack the archive if you have not done so already:

cd /usr/local
gunzip qt-x11-free-3.2.1.tar.gz # uncompress the archive
tar xf qt-x11-free-3.2.1.tar # unpack it

This creates the directory /usr/local/qt-x11-free-3.2.1 containing the
files from the main archive.

Rename qt-x11-free-3.2.1 to qt (or make a symlink):

mv qt-x11-free-3.2.1 qt

The rest of this file assumes that Qt is installed in /usr/local/qt.


2. Set some environment variables in the file .profile (or .login,
depending on your shell) in your home directory. Create the
file if it is not there already.

QTDIR - the directory in which you're building Qt
PATH - to locate the moc program and other Qt tools
MANPATH - to access the Qt man pages
LD_LIBRARY_PATH - for the shared Qt library

This is done like this:

In .profile (if your shell is bash, ksh, zsh or sh), add the
following lines:

QTDIR=/usr/local/qt
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR PATH MANPATH LD_LIBRARY_PATH

In .login (in case your shell is csh or tcsh), add the following lines:

setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH

After you have done this, you will need to login again, or
re-source the profile before continuing, so that at least $QTDIR
and $PATH are set. Without these the installation will halt with an error
message.


On AIX set LIBPATH and on HP-UX set SHLIB_PATH instead of LD_LIBRARY_PATH.

If you use IRIX MIPSpro o32 or Sun CC 5.0 you need to run the
qt32castcompat script found in $QTDIR/bin before compiling Qt.


3. Install your license file as $HOME/.qt-license.
For the free edition and evaluation version, you do not need a license
file.


4. Building.

This step compiles the Qt library, and builds the example programs,
the tutorial, and the tools (e.g. Qt Designer).

Type:

./configure

This will configure the Qt library for your machine. Note that
GIF support is turned off by default. Run ./configure -help
to get a list of configuration options. Read PLATFORMS for a
list of supported platforms.

To create the library and compile all the examples and the
tutorial, type:

make

If your platform or compiler is not supported, please contact us at
qt-bugs@trolltech.com so that we can assist you. If it is supported
but you have problems, see http://www.trolltech.com/platforms/


At this point you have binaries created in $QTDIR (eg. $QTDIR/lib/
contains libqt.so). If, however, you would like to have your Qt
installed in a non-local installation you can run configure with
options splitting Qt into different areas for example:

./configure -libdir /usr/local/lib -bindir /usr/local/bin -headerdir /usr/local/include/qt

If you supplied a custom install directory using the -prefix
parameter in step 2, you can:

make install

This will install Qt onto your machine using the paths you've set.
(See ./configure -help for more information). If you choose to
install Qt like this, remember that you must set your
LD_LIBRARY_PATH to match your -libdir and your QTDIR to your
-headerdir (as described in (2) above).


5. In very few cases you may need to run /sbin/ldconfig or something
similar at this point if you are using shared libraries.

If you have problems running the example programs, e.g. messages like

can't load library 'libqt.so.3'

you probably need to put a reference to the qt library in a
configuration file and run /sbin/ldconfig as root on your system.
And don't forget to set LD_LIBRARY_PATH as explained in (2) above.


6. The online HTML documentation is installed in /usr/local/qt/doc/html/
The main page is /usr/local/qt/doc/html/index.html
The man pages are installed in /usr/local/qt/doc/man/



That's all. Qt is now installed.
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »coollinux« (30.05.2005, 07:05)


canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

8

30.05.2005, 11:33

Eins nach dem anderen!

Ist das hier deine Karte?
http://www.tuxhardware.de/product_info.html?products_id=429

Hast Du schon die Kernelsourcen und die Tools installiert?
YaST->Software->Software intallieren...->Filter->Selektionen
Hier "Kernel Entwicklung" und "C++ Compiler und Werkzeuge" anwählen und installieren.

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

9

30.05.2005, 13:38

Ja habe ich installiert.
Doch man findet es nicht im Menü.
Ne das ist die falsche karte (habe ein notebook)
Die ist auch falsch: http://www.tuxhardware.de/product_info.h…products_id=202
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

10

30.05.2005, 14:56

Zitat

Original von canis_lupus
Eins nach dem anderen!

Ist das hier deine Karte?
http://www.tuxhardware.de/product_info.html?products_id=429

Hast Du schon die Kernelsourcen und die Tools installiert?
YaST->Software->Software intallieren...->Filter->Selektionen
Hier "Kernel Entwicklung" und "C++ Compiler und Werkzeuge" anwählen und installieren.

Also ich finde "C++ Compiler und Werkzeuge" nicht unter "software hinzufügen oder entfernen"!?
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

11

30.05.2005, 15:03

Das sind alles Daten bzw. Konsolenanwendungen. Da gibts nichts im Menu. Willkommen in der Welt der unixartigen Betriebsysteme. Hier wird auch heute noch zu 80% getippt.

Weiter gehts: (ich gehe jetzt bei den Befehlen immer von meinen vorgeschalgenen Pfaden aus. Nimmst Du andere, dan anpassen. Ausserdem Groß- und Kleinschreibung wird unterschieden!!!)

- Erstelle ein Verzeichnis WLAN in deinem Homeverzeichnis
- Kopiere die Verzeichnisse (Module, Utilities) in das WLAN-Verzeichnis
- Shell öffnen
- cd ~/WLAN/Module
- ls -l

Ergebnis beim nächsten mal posten

- make

Wenn Fehlermeldungen, dann ab kurz vor der Fehlermeldung posten

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

12

30.05.2005, 15:16

Zitat

Original von canis_lupus
Das sind alles Daten bzw. Konsolenanwendungen. Da gibts nichts im Menu. Willkommen in der Welt der unixartigen Betriebsysteme. Hier wird auch heute noch zu 80% getippt.

Weiter gehts: (ich gehe jetzt bei den Befehlen immer von meinen vorgeschalgenen Pfaden aus. Nimmst Du andere, dan anpassen. Ausserdem Groß- und Kleinschreibung wird unterschieden!!!)

- Erstelle ein Verzeichnis WLAN in deinem Homeverzeichnis
- Kopiere die Verzeichnisse (Module, Utilities) in das WLAN-Verzeichnis
- Shell öffnen
- cd ~/WLAN/Module
- ls -l

Ergebnis beim nächsten mal posten

- make

Wenn Fehlermeldungen, dann ab kurz vor der Fehlermeldung posten

Wo ist SHELL?
Ist es da wo man den BEFEHL ausführen kann?
Wo ist das hauptverzeichniss?
Ist es das erste, wenn man auf die festplatte kommt?
Oder ist es File:/usr/lokal ?
Ich gekomme das ~ zeichen nicht auf meinem Notebook hin.
Ich drücke "STRG" + "ALT" + "+"
Doch linux macht dann ein "+"
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

13

30.05.2005, 15:29

Ich glaube jetzt habe ichs...
Bin in "Befehlsfenster - Konsole"
Habe da "cd /WLAN/Module" eingegeben und dann sahs wie im MSDOS aus ;)
habe den befehl "ls -l" eingegeben. Dann hat er mir den inhalt des verzeichnisses "Module" ausgegeben. Dan habe ich '/WLAN/Module/Makefile' eingegeben, und dan kamen viele fehler meldungen ;)
wo immer steht:
Line 2: CC: command not found
Line 5: include: command not found
...
Und immer so weiter ;)
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

14

30.05.2005, 17:33

Zitat

Original von coollinux
Ich glaube jetzt habe ichs...
Bin in "Befehlsfenster - Konsole"
Habe da "cd /WLAN/Module" eingegeben und dann sahs wie im MSDOS aus ;)
habe den befehl "ls -l" eingegeben. Dann hat er mir den inhalt des verzeichnisses "Module" ausgegeben. Dan habe ich '/WLAN/Module/Makefile' eingegeben, und dan kamen viele fehler meldungen ;)
wo immer steht:
Line 2: CC: command not found
Line 5: include: command not found
...
Und immer so weiter ;)


Sicher das Du cd /WLAN/Module eingegeben hast?
Wenn Du im Modul-Verzeichnis bist, bitt mal die Ausgaben von:

Quellcode

1
ls -l
und

Quellcode

1
pwd

posten!

Die Fehlermeldungen sagen, das Du den C-Compiler nicht installiert hast!
Tippe mal

Quellcode

1
gcc
und

Quellcode

1
cc
ein. Wenn Du "command not found" als Fehler bekommst, hast Du die C-Entwicklungsumgebung doch nicht installiert.



P.S.: ~ mit <AltGr>+<+>

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »canis_lupus« (30.05.2005, 17:35)


coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

15

30.05.2005, 17:49

Zitat

Original von canis_lupus

Zitat

Original von coollinux
Ich glaube jetzt habe ichs...
Bin in "Befehlsfenster - Konsole"
Habe da "cd /WLAN/Module" eingegeben und dann sahs wie im MSDOS aus ;)
habe den befehl "ls -l" eingegeben. Dann hat er mir den inhalt des verzeichnisses "Module" ausgegeben. Dan habe ich '/WLAN/Module/Makefile' eingegeben, und dan kamen viele fehler meldungen ;)
wo immer steht:
Line 2: CC: command not found
Line 5: include: command not found
...
Und immer so weiter ;)


Sicher das Du cd /WLAN/Module eingegeben hast?
Wenn Du im Modul-Verzeichnis bist, bitt mal die Ausgaben von:

Quellcode

1
ls -l
und

Quellcode

1
pwd

posten!

Die Fehlermeldungen sagen, das Du den C-Compiler nicht installiert hast!
Tippe mal

Quellcode

1
gcc
und

Quellcode

1
cc
ein. Wenn Du "command not found" als Fehler bekommst, hast Du die C-Entwicklungsumgebung doch nicht installiert.



P.S.: ~ mit <AltGr>+<+>

Ja ich habe "cd /WLAN/Module" eingegeben...

ls -l: Ausgabe der Aktuellen Dateien im Verzeichniss
pwd: Ausgabe des standortes (/WLAN/Module)
gcc: command not found
cc: command not found

Redest du von dem C++ Compiler???
Der von dem in der README die rede ist?
Ich habe den ql (qt-x11-free-3.2.1.tar.gz) runtergeladen!
Entpackt!
Den ordner auf QL umbenannt und ins hauptverzeichniss getan!
Dann kommt der teil der installation von QL:

Zitat

2. Set some environment variables in the file .profile (or .login,
depending on your shell) in your home directory. Create the
file if it is not there already.

QTDIR - the directory in which you're building Qt
PATH - to locate the moc program and other Qt tools
MANPATH - to access the Qt man pages
LD_LIBRARY_PATH - for the shared Qt library

This is done like this:

In .profile (if your shell is bash, ksh, zsh or sh), add the
following lines:

QTDIR=/usr/local/qt
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR PATH MANPATH LD_LIBRARY_PATH

In .login (in case your shell is csh or tcsh), add the following lines:

setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH

After you have done this, you will need to login again, or
re-source the profile before continuing, so that at least $QTDIR
and $PATH are set. Without these the installation will halt with an error
message.


On AIX set LIBPATH and on HP-UX set SHLIB_PATH instead of LD_LIBRARY_PATH.

If you use IRIX MIPSpro o32 or Sun CC 5.0 you need to run the
qt32castcompat script found in $QTDIR/bin before compiling Qt.


Den ich nicht verstehe! :(
(Ich hoffe, das ich es irgendwann schaffe)
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

16

30.05.2005, 19:55

OK mal ein update:
Habe im Home verzeichniss die daten des QT (http://www.trolltech.com/download/index.html?cid=21) in den Ordner "ql" getan!
Habe shell gefunden
("START" -> "System" -> "Terminals" -> "Konsole" ODER?)

Dort habe ich dann das alles augeführt:

Zitat

QTDIR - the directory in which you're building Qt
PATH - to locate the moc program and other Qt tools
MANPATH - to access the Qt man pages
LD_LIBRARY_PATH - for the shared Qt library

QTDIR=/usr/local/qt
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR PATH MANPATH LD_LIBRARY_PATH

csh

setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH


Das system neugestartet.
Und jetzt???

Hier die INSTALL datei:

Zitat

INSTALLING Qt Version 3.2.1 FOR X11


You may need to be logged in as root, depending on the permissions of
the directories where you choose to install Qt.


1. Unpack the archive if you have not done so already:

cd /usr/local
gunzip qt-x11-free-3.2.1.tar.gz # uncompress the archive
tar xf qt-x11-free-3.2.1.tar # unpack it

This creates the directory /usr/local/qt-x11-free-3.2.1 containing the
files from the main archive.

Rename qt-x11-free-3.2.1 to qt (or make a symlink):

mv qt-x11-free-3.2.1 qt

The rest of this file assumes that Qt is installed in /usr/local/qt.


2. Set some environment variables in the file .profile (or .login,
depending on your shell) in your home directory. Create the
file if it is not there already.

QTDIR - the directory in which you're building Qt
PATH - to locate the moc program and other Qt tools
MANPATH - to access the Qt man pages
LD_LIBRARY_PATH - for the shared Qt library

This is done like this:

In .profile (if your shell is bash, ksh, zsh or sh), add the
following lines:

QTDIR=/usr/local/qt
PATH=$QTDIR/bin:$PATH
MANPATH=$QTDIR/doc/man:$MANPATH
LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH

export QTDIR PATH MANPATH LD_LIBRARY_PATH

In .login (in case your shell is csh or tcsh), add the following lines:

setenv QTDIR /usr/local/qt
setenv PATH $QTDIR/bin:$PATH
setenv MANPATH $QTDIR/doc/man:$MANPATH
setenv LD_LIBRARY_PATH $QTDIR/lib:$LD_LIBRARY_PATH

After you have done this, you will need to login again, or
re-source the profile before continuing, so that at least $QTDIR
and $PATH are set. Without these the installation will halt with an error
message.


On AIX set LIBPATH and on HP-UX set SHLIB_PATH instead of LD_LIBRARY_PATH.

If you use IRIX MIPSpro o32 or Sun CC 5.0 you need to run the
qt32castcompat script found in $QTDIR/bin before compiling Qt.


3. Install your license file as $HOME/.qt-license.
For the free edition and evaluation version, you do not need a license
file.


4. Building.

This step compiles the Qt library, and builds the example programs,
the tutorial, and the tools (e.g. Qt Designer).

Type:

./configure

This will configure the Qt library for your machine. Note that
GIF support is turned off by default. Run ./configure -help
to get a list of configuration options. Read PLATFORMS for a
list of supported platforms.

To create the library and compile all the examples and the
tutorial, type:

make

If your platform or compiler is not supported, please contact us at
qt-bugs@trolltech.com so that we can assist you. If it is supported
but you have problems, see http://www.trolltech.com/platforms/


At this point you have binaries created in $QTDIR (eg. $QTDIR/lib/
contains libqt.so). If, however, you would like to have your Qt
installed in a non-local installation you can run configure with
options splitting Qt into different areas for example:

./configure -libdir /usr/local/lib -bindir /usr/local/bin -headerdir /usr/local/include/qt

If you supplied a custom install directory using the -prefix
parameter in step 2, you can:

make install

This will install Qt onto your machine using the paths you've set.
(See ./configure -help for more information). If you choose to
install Qt like this, remember that you must set your
LD_LIBRARY_PATH to match your -libdir and your QTDIR to your
-headerdir (as described in (2) above).


5. In very few cases you may need to run /sbin/ldconfig or something
similar at this point if you are using shared libraries.

If you have problems running the example programs, e.g. messages like

can't load library 'libqt.so.3'

you probably need to put a reference to the qt library in a
configuration file and run /sbin/ldconfig as root on your system.
And don't forget to set LD_LIBRARY_PATH as explained in (2) above.


6. The online HTML documentation is installed in /usr/local/qt/doc/html/
The main page is /usr/local/qt/doc/html/index.html
The man pages are installed in /usr/local/qt/doc/man/



That's all. Qt is now installed.



Und hier die README:

Zitat

This is Qt version 3.2.1

Qt is a multiplatform C++ GUI application framework.

Qt 3.2 introduces new features and many improvements over the 3.1.x
series. See the changes file for details.

The Qt version 3.2 series is binary compatible with the 3.1.x series -
applications compiled for 3.1 will continue to run with 3.2.

For this release, the following platforms have been tested:

win32-borland
win32-msvc
win32-msvc.net

irix-cc
irix-g++
solaris-cc
solaris-g++
linux-g++
freebsd-g++
aix-g++
aix-xlc
hpux-acc
hpux-g++

macx-g++
macx-pbuilder

If you want to use Qt 3 on an unsupported version of Unix, please
contact us at qt-bugs@trolltech.com so that we can assist you.


How to get the release:

Qt Free Edition: Download the .tar.gz archive from
ftp.trolltech.com. For faster download times, use ftpsearch and search
for qt-x11-free-3.2.1 to find it on a mirror ftp site
near you.

Qt Professional Edition, Qt Enterprise Edition: Holders of valid
licenses should have received an e-mail with instructions on how to
get the new release. Contact sales@trolltech.com if you are a
Professional or Enterprise Edition licensee and have not received this
e-mail.

Any problems encountered with Qt 3.2 should be reported to
qt-bugs@trolltech.com.

Qt is a trademark of Trolltech AS.


Bitte nicht ZITIEREN, das würde dann alles noch unübersichtlicher werden ;)
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

17

30.05.2005, 20:16

Vergiss das mit dem QT! Das hat gar nichts mit dem Problem zu tun.
Ich sagte schon, was Du machen musst:

YaST starten -> Software -> Software intallieren... -> Filter -> Selektionen
Hier "Kernel Entwicklung" und "C++ Compiler und Werkzeuge" anwählen und installieren

Wenn ich schreibe, poste bitte die Ausgaben, dann meine ich damit, das Du die Ausgabe hierhinein kopierst. Eine Beschreibung was Du siehst, nützt nichts.
Wenn Du kconsole verwendest, kannst Du die Ausgabe mit der Maus markieren und über das Bearbeiten-Menü kopieren und hier mit <Strg>+<V> einfügen (wie Windows). Nur <Strg>+<C> geht in kconsole nicht, da es dort eine besondere Bedeutung besitzt.

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »canis_lupus« (30.05.2005, 20:18)


coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

18

30.05.2005, 20:35

Ich surfe (oben schonmal gesagt) auf einem WINDOWS rechner!
Da ich mit linux nicht über WLAN ins I-Net kann ;)
Daher muss ich beschreiben!
Das floppy geht nicht: habe auch ein thema erstellt
Und kein brenner!
Dann sag mir mal wie ich das machen soll?
Daher beschreibe ich sogut wie ich kann :)

Ich ahbe auch irgentwo schonmal gesagt das ich in YAST drin war!!!
Und ich habe alles installier was mit C++ zu tun hat!

Bei selektionen steht:
Grafisches Grundsystem
KDE Desktop-Umgebung
Dokumentation, Hilfe & Support
Büroanwendungen

Und sonst nüscht!
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

canis_lupus

Anfänger

  • »canis_lupus« ist männlich

Beiträge: 42

Wohnort: Deutschland/Magdeburg

Beruf: freiberuflicher Dozent/Berater

  • Nachricht senden

19

30.05.2005, 23:42

Was ist das genau für eine SuSE-Version? Doch nicht etwa Personal oder eine Zeitschriftendemo?
Die Punkte die Du angegeben hast sind definitiv unvollständig.
Hast Du keine Möglichkeit via Kabel ins Netz zu kommen?

Wenn Du das Diskettenlaufwerk drin hast, versuch einmal folgende Zeile in der Shell:

cat /etc/fstab

Wenn folgende Zeile fehlt, muss sie nachgetragen werden:

/dev/fd0 /media/floppy subfs fs=floppyfss,procuid,nodev,nosuid,sync 0 0

Starte den Konqueror im Systemverwaltungsmodus (unter System/Dateiverwaltung im KDE-Menü), klicke Dich bis zur /etc/fstab und öffne Sie mit einem Editor (Kate, Kwrite,..) via rechte Maustaste und Kontextmenu. Kein Doppelklick! Das startet nur einen Viewer.
Füge am Ende diese Zeile hinzu und schliesse Sie mit Enter ab.
VORSICHT! FEHLER KÖNNEN DEIN SYSTEM HIER UNBRAUCHBAR MACHEN!

Lege im Konqueror gleich noch ein Verzeichnis /media/floppy an und von nun an sollte es mit der Diskette klappen. (Eventuell nochmal neu starten).

coollinux

So'n Typ mit Linux

  • »coollinux« ist männlich
  • »coollinux« ist der Autor dieses Themas

Beiträge: 53

Wohnort: Kettig

Beruf: Schüler

  • Nachricht senden

20

31.05.2005, 07:09

Habe die version aus dem i-net...
Die ISO heißt: SUSE-9.1-personal-x86
Also nochmal los und professional besorgen???
Und da habe ich dann den compiler drin???

HAbe das mit dem disklaufwerk gemacht, hat auch geklappt (toll ich kann aber nur mit root zugreifen :) )

Nochwas, wie mache ich es, dass wenn ich ABMELDEN drücke ich auch mal runterfahren kann??
ACHTUNG: Ich bin absoluter Linux NEWBIE!!!
www.handy-family.de

Thema bewerten