Toon posts:

Xine install

Pagina: 1
Acties:

Verwijderd

Topicstarter
gegroet.

Ik probeer Xine te installeren, maar het wil niet lukken...
dit is mijn output:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[root@laptop root]# cd /data/rpm/xine
[root@laptop xine]# dir
xine-0.9.23-1.fr.src.rpm           xine-skins-1.7-1.fr.src.rpm
xine-lib-1.0.0-0.5.rc3.fr.src.rpm
[root@laptop xine]# rpm -Uvh xine-lib1.0.0-0.5.rc3.fr.src.rpm
error: open of xine-lib1.0.0-0.5.rc3.fr.src.rpm failed: Onbekend bestand of map
[root@laptop xine]# rpm -Uvh xine-lib-1.0.0-0.5.rc3.fr.src.rpm
warning: xine-lib-1.0.0-0.5.rc3.fr.src.rpm: V3 DSA signature: NOKEY, key ID e42d 547b
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
   1:xine-lib               ########################################### [100%]
[root@laptop xine]# rpm -Uvh xine-skins-1.7-1.fr.src.rpm
warning: xine-skins-1.7-1.fr.src.rpm: V3 DSA signature: NOKEY, key ID e42d547b
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
   1:xine-skins             ########################################### [100%]
[root@laptop xine]# dir
xine-0.9.23-1.fr.src.rpm           xine-skins-1.7-1.fr.src.rpm
xine-lib-1.0.0-0.5.rc3.fr.src.rpm
[root@laptop xine]# rpm -Uvh xine-0.9.23-1.fr.src.rpm
warning: xine-0.9.23-1.fr.src.rpm: V3 DSA signature: NOKEY, key ID e42d547b
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
warning: user machbuild does not exist - using root
warning: group machbuild does not exist - using root
   1:xine                   ########################################### [100%]
[root@laptop xine]# xine
bash: xine: command not found
[root@laptop xine]#


die warning, wat betekend die, en wat doe ik eraan? ben ze nogal tegengekomen met het installeren van rpm's...
wie helpt...?
thx...

  • a casema user
  • Registratie: Januari 2000
  • Laatst online: 20-02 11:20
http://xinehq.de/index.php/releases
Je moet nog een frontend installeren.
DIe warnings lijken mij geen ramp.

Taaaa taa taa taaaa taa taa ta taaataaaaa.


Verwijderd

het lijkt erop dat waar hij xine heeft gezet niet voorkomt in je $PATH variabel.
doe een updatedb en locate xine | grep bin
om te zien waar het is, en kijk daarna even je $PATH na in /etc/profile

@a casema user
xine-lib.rpm xine-skins.rpm en xine.rpm
lijkt mij dan dat xine.rpm wel xine-ui is :)

wat die errors betekenen is duidelijk.
de gebruiker machbuild bestaat niet.
de groep machbuild bestaat niet
ik gebruik root.

dus niks om je druk om te maken.

maar zet ook even ergenst welke distro je gebruikt, gezien ik niet aan je text kan zien welke het is.
(ik gok fedora ofzo. maarja met gokken alleen komt men der niet.)

[ Voor 38% gewijzigd door Verwijderd op 11-01-2004 19:37 ]


Verwijderd

Topicstarter
idd Fedora...

na een updatedb:

code:
1
2
3
4
[root@laptop root]# updatedb
[root@laptop root]# locate xine | grep bin
/usr/sbin/xinetd
[root@laptop root]#


en dan in m'n /etc/profile
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# /etc/profile

# System wide environment and startup programs, for login setup
# Functions and aliases go in /etc/bashrc

pathmunge () {
    if ! echo $PATH | /bin/egrep -q "(^|:)$1($|:)" ; then
       if [ "$2" = "after" ] ; then
          PATH=$PATH:$1
       else
          PATH=$1:$PATH
       fi
    fi
}

# Path manipulation
if [ `id -u` = 0 ]; then
    pathmunge /sbin
    pathmunge /usr/sbin
    pathmunge /usr/local/sbin
fi

pathmunge /usr/X11R6/bin after

unset pathmunge

# No core files by default
ulimit -S -c 0 > /dev/null 2>&1

USER="`id -un`"
LOGNAME=$USER
MAIL="/var/spool/mail/$USER"

HOSTNAME=`/bin/hostname`
HISTSIZE=1000

if [ -z "$INPUTRC" -a ! -f "$HOME/.inputrc" ]; then
    INPUTRC=/etc/inputrc
fi

export PATH USER LOGNAME MAIL HOSTNAME HISTSIZE INPUTRC

for i in /etc/profile.d/*.sh ; do
    if [ -r "$i" ]; then
        . $i
    fi
done

unset i


maar wat moet ik nu aanpassen?

[ Voor 98% gewijzigd door Verwijderd op 11-01-2004 19:45 ]


  • _JGC_
  • Registratie: Juli 2000
  • Laatst online: 16:42
leuk, je staat SRPMS te installeren, die moet je eerst nog bouwen :P

en tja, machbuild... dat komt wel vaker voor bij SRPMs

Verwijderd

Het zijn source RPMs, je moet de binary hebben...

[edit]
JGC, trut. :P.

[ Voor 21% gewijzigd door Verwijderd op 11-01-2004 19:42 ]


Verwijderd

Topicstarter
????
hoe zie je dat dan?
ik dacht dat de 'devel' rpm's de source waren...
waar haal ik dan de binaries?

  • _JGC_
  • Registratie: Juli 2000
  • Laatst online: 16:42
Ik zou in jouw geval deze installeren:
http://ftp.freshrpms.net/...um-2.0.4-2.fd.fr.i386.rpm

vervolgens kan je gewoon met yum pakketjes downloaden en installeren zonder dat je allerlei dependency meuk zelf hoeft op te lossen.

  • frim
  • Registratie: Augustus 2001
  • Niet online
verder kun je met de tabtoets bestandsnamen afmaken, en hoef je dus niet het hele pakket in te tiepen. Ook moet je bij een nieuwe installatie rpm -ivh gebruik ipv rpm -Uvh. de U is voor een Upgrade, de i voor install.

  • 7_feet_up
  • Registratie: November 2003
  • Laatst online: 12-08-2023
Het gebruik van rpm -Uvh is geen probleem. Als er niets te updaten valt, doet het hetzelfde als rpm -ivh

  • Wilke
  • Registratie: December 2000
  • Laatst online: 22-02 22:40
De afkorting 'src' voor 'source' in de bestandsnaam?

  • DeMoN
  • Registratie: Maart 2001
  • Laatst online: 17-02 18:05

DeMoN

Pastafari

Lees ff dit stukkie wat ik ooit op me webspace heb geflikkerstraalt.. :P

http://www.ezeeman.demon.nl/docs/srpm.txt

:)

edit:

WTF? Het is nooit compleet geweest... hmmm hij nokt opeens dat bestand hehe. Naja.. wazig :?


edit2: waardeloze post van me dus nu... sorry ;)

[ Voor 42% gewijzigd door DeMoN op 22-01-2004 13:39 ]

Gamertag: Cosmicv0id
"Het woord Gods is voor mij niets meer dan een expressie en het product van menselijke zwakheid. De Bijbel is een verzamelwerk van legendes die achtenswaardig zijn maar ook primitief en kinderachtig.'' - Albert Einstein

Pagina: 1