LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Install tar package (https://www.linuxquestions.org/questions/linux-newbie-8/install-tar-package-448324/)

jojojo 05-25-2006 12:49 AM

Install tar package
 
I have downloaded xmms-curses-0.2.2.tar.gz. Its a plugin for xmms. I have extract the file, then it create the xmms-curses file.

I want to know, is this plugin already installed? If not, how do I install it?

vls 05-25-2006 12:56 AM

tar.gz files are usually source code.

shell command:
Code:

$ cd xmms-curses
If you see README, INSTALL and a configure script file, then it's source and needs to be compiled and installed.

Standard routine:

Code:

$ ./configure
$ make
$ su -
$ make install


jojojo 05-25-2006 01:33 AM

Ok, i've already access the xmms-curses file. But how can i access the xmms configuration file?

[jo@localhost xmms-curses-0.2.2]$ ls
ChangeLog kbd_constants.h playlist.h settings.h
COPYING main.c playlist_jump.c xmms-curses.1
curses_printf.c main.h playlist_jump.h xmms-curses.conf
curses_printf.h Makefile README
debian playlist.c settings.c

vls 05-25-2006 02:15 AM

Quote:

Originally Posted by jojojo
Ok, i've already access the xmms-curses file. But how can i access the xmms configuration file?

[jo@localhost xmms-curses-0.2.2]$ ls
ChangeLog kbd_constants.h playlist.h settings.h
COPYING main.c playlist_jump.c xmms-curses.1
curses_printf.c main.h playlist_jump.h xmms-curses.conf
curses_printf.h Makefile README
debian playlist.c settings.c

Okay, this is a rather primitive source code package.

Read the README -- shell command : less README. Should tell you what to do.
Nutshell: Type make at the command line while in that directory. As long as you have the pre-requisites on your machine, it should go.

Read the README (again, for emphasis)


All times are GMT -5. The time now is 07:46 AM.