Nieuws:

Welkom, Gast. Alsjeblieft inloggen of registreren.
Heb je de activerings-mail niet ontvangen?

Auteur Topic: installeren software van derden  (gelezen 2987 keer)

installeren software van derden
« Gepost op: 2008/03/26, 10:01:34 »
dag allemaal,

hoewel ik alreeds iets daarover  heb gevraagd begrijp ik nog steeds niet wat te doen met de .rz enz. files.
de informatie hierover gelezen maar het lukt niet.
kan ieman mij stap voor stap vetrellen hoe dat moet?

wederom mijn dank,

hans minekus

Offline Scormen

  • Lid
    • LinuxOntdekt.Be
installeren software van derden
« Reactie #1 Gepost op: 2008/03/26, 10:42:01 »
Om eerlijk te zijn had ik nog niet gehoord van ".rz", maar na even te zoeken bleek het dus om een gecomprimeerd archief te gaan.

Om die bestanden uit te pakken kan je best het programma "rzip" installeren.

Hoe je dat programma vervolgens moet installeren, daar zal normaler wijze een soort van readme instekken. Anders is dit de meest gebruikte methode:
cd /naar/de/map
./configure
make
make install

Maar let wel ten zeerste op met zulke exotische programma's, dat ze niet heel je systeem omzeep helpen. Wat moest dit programma doen? Misschien bestaat er wel een beter gekend alternatief voor.

Kris
Ubuntu gebruiker #18341 | Linux gebruiker #456955
· Mijn persoonlijke Linux blog

installeren software van derden
« Reactie #2 Gepost op: 2008/03/26, 14:19:31 »
dag kris,
dank je voor het antwoord.
ik gebruik zlef 7-zip.
echter er zijn eigenlijk nooit ¨install¨ of .exe onderdelen bij, maar wel .gz of .gaz extensies bij.

zal terugkomen op het moment dat ik een voorbeeld heb.

nogmaals, dank, dank,

hans minekus

Offline Scormen

  • Lid
    • LinuxOntdekt.Be
installeren software van derden
« Reactie #3 Gepost op: 2008/03/26, 15:25:32 »
*.exe bestanden zal je in de linux wereld niet tegenkomen. Exe formaten kan je enkel in een Windows omgeving gebruiken.

Nogmaals, let op met zulke bestanden en archieven.

Kris
Ubuntu gebruiker #18341 | Linux gebruiker #456955
· Mijn persoonlijke Linux blog

Offline Johan van Dijk

  • Administrator
    • johanvandijk
installeren software van derden
« Reactie #4 Gepost op: 2008/03/26, 15:38:57 »
dutch1: normaal gesproken wil je software alleen maar installeren via de pakketbronnen (dus via synaptic)
Als je een programma wil installeren wat daar niet in staat zijn er heel veel mogelijkheden en het hangt per programma af hoe het precies moet.
Dit zul je dus  zelf op moeten zoeken via Google of hier vragen.

Let wel op: programma's die je niet installeert via synaptic krijgen GEEN automatische UPDATES, zijn mogelijk ONVEILIG en zijn regelmatig NIET of heel moeilijk TE VERWIJDEREN. Oppassen dus.

Voor de meeste dingen die je wil doen zijn wel programma's die in Synaptic zitten. In de meeste gevallen is het dus helemaal niet nodig om dingen te installeren buiten synaptic om.

Offline jan11000

  • Lid
installeren software van derden
« Reactie #5 Gepost op: 2008/03/26, 16:19:06 »
Hier enkele voorbeelden hoe een programma te installeren:

1 How to install Katalog (dit is een programma).
If you can find a package for your distribution in the download section, you can try to install Katalog from sources, it's not so difficult:
To compile the application use the standard sequence:

            tar xzf katalog-xx.tar.gz    (dit is gewoon uitpakken)
            cd katalog-xx                   (ga naar map met terminal)
            ./configure                      (enter)
            make                              (enter)
            make install  (you must be root here)(enter)
Nu kan er een icoon zijn , maar soms ook niet dus goed de tekst files lezen en de handleiding op de site.

2
How to Install Source Files in Ubuntu

Posted by jayaram on November 9th, 2007 EMail This Post

For all those who are beginners in any linux(ubuntu) find hard to find the package files of their distro and end up in finding an source package(which is either in tar.gz or .gz).. so now people think how to install these source files…..

lets now see how would you be installing source files in ubuntu…..

source files contain the programs and hence before the installation you need to compile them… so you need to install the build-essentials from the synaptic package manager…. else this build-essentials is already present in the cd.. and so you can install it…..else you can install it typing it in the terminal by

sudo aptitude install build-essentials

suppose you have a source file name src.tar.gz, what you do initially is that you need to extract the source files and then in the terminal….

navigate to the folder where the source file is extracted using the cd commands….. and then

type the following…
./configure

make

sudo make install

clean install

lets see what each one of them does…

./configure….. checks whether the required dependencies are available on your system or not….. if not an error is reported….

make compiles the source code and make install is used to install the program in to the location

if it asks for an installation location it is recommended to install all the source to /usr/src

clean install removes any temporary files created in the installation process of the source

and thats it your source file in installed in your system.

3
ftd (is een programma)

sudo apt-get install build-essential pkg-config \
                    libsqlite3-dev libsexy-dev \
                    libgtkspell-dev libgtkhtml3.8-dev \
                    libglib2.0-dev libdbus-glib-1-dev \
                    libcurl3-dev libpcre3-dev \
                    libxslt1-dev libnotify-dev libtool \
                    automake1.9 autoconf firefox-dev
cd /tmp
wget http://ftd4linux.nl/releases/openftd-1.0.1.tar.bz2
tar -xvjf openftd-1.0.1.tar.bz2
cd openftd-1.0.1
./configure
make
sudo make install

4
rpm file is een redhat linux file wat niet werkt op ubuntu, maar dmv alien kun je deze omschrijven.
How to install rpm files (omschrijven met alien)
sudo alien gtk-splitter-2.0-1.i386.rpm
then you get deb package and install  (dubbel klik op deb file)

5

sudo apt-get install build-essential checkinstall
 
tar -xvzf example.tar.gz     (uitpakken)
ga naar map die uitgepakt is
./configure
make
sudo make install
sudo check install

6 java program
Install java server
start java program with:  java -jar /home/mzx47npi/hpt5/hjsplit/hjsplit_g.jar

How to Install Java Runtime Environment (JRE) in Ubuntu

Java is an object-oriented programming language developed by Sun Microsystems in the early 1990s. Java applications are compiled to bytecode, which at runtime is either interpreted or compiled to native machine code for execution.

The language itself derives much of its syntax from C and C++ but has a simpler object model and fewer low-levelfacilities. JavaScript, a scripting language, shares a similar name and has similar syntax, but is not directly related to Java.

Currently Ubuntu has the following Java packages

sun-java5-bin - Contains the binaries

sun-java5-demo - Contains demos and examples

sun-java5-doc - Contains the documentation

sun-java5-fonts - Contains the Lucida TrueType fonts from the JRE

sun-java5-jdk - Contains the metapackage for the JDK

sun-java5-jre - Contains the metapackage for the JRE

sun-java5-plugin - Contains the plug-in for Mozilla-based browsers

sun-java5-source - Contains source files for the JDK

Installing the Java Runtime Environment

First you need to check multiverse repository enabled or not after that open a terminal window. Since you are going to be installing the JRE and the web browser plug-in, you'll be using the following command from a terminal

sudo apt-get install sun-java5-jre sun-java5-plugin sun-java5-fonts

Once it downloads the packages and begins the installation, you'll get a screen that contains the Sun Operating System Distributor License for Java and hit Enter to continue. You'll see a dialog that asks you if you agree with the DLJ license terms. Select Yes, and hit Enter; the JRE will finish installing.

Testing Java Runtime Environment

You'll want to confirm that your system is configured properly for Sun's JRE. This is a two-step process.

First, check that the JRE is properly installed by running the following command from a terminal.

java -version

You should get similar output

java version "1.5.0_08"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_08-b03)
Java HotSpot(TM) Client VM (build 1.5.0_08-b03, mixed mode, sharing)

Testing Java Plugin for Firefox

open Firefox and typing about:plugins in the address bar and check for java plugin



7 vmware tools installeren in ubuntu:


nu moet het tar.gz bestand uitgepakt worden.

sudo tar zxf VMwareTools*

Open de directory waar de uitgepakte bestanden in staan

cd vmware-tools-distrib/

Start het installatie script (Let op je moet hier als root ingelogt zijn of sudo er voor starten).

sudo ./vmware-install.pl  (dit is een programma die installeerd)

installeren software van derden
« Reactie #6 Gepost op: 2008/03/27, 13:12:34 »
dag allemaal,

wederom is hier een gelukkig mens.
dank voor alle antwoorden en adviezen.

hans minekus