+ Reply to Thread
Results 1 to 15 of 15

Thread: how do you compile packages in xubuntu

  1. #1
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default how do you compile packages in xubuntu

    how do you compile packages in xubuntu i dont have the sightest idead on how to do this i think it is easy once you figure out how it works but as of now all i know on how to do it is to have the sorce and then type a few commands in the terminal i dont know what the commands are how ot use then or what to do with the sorce

    many of the programs i want to use are in just sorce wich i think is a great thing ober windows becuase of you have a older version you can use alot of the things that a xp can but in linux your os forms the sorce to its self

    so can anyone help me with this i have look a 5 howtos and they where of not help
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  2. #2
    Geek Geek Geek! megamaced is on a distinguished road megamaced's Avatar
    Join Date
    Nov 2005
    Location
    London
    Age
    26
    Posts
    3,487
    0 0

    Default Re: how do you compile packages in xubuntu

    What program do you want to compile? You may find that a package is available in the repositories.

  3. #3
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default Re: how do you compile packages in xubuntu

    azureus and java

    and a few others
    Last edited by jester45; 03-09-2006 at 09:49 PM.
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  4. #4
    Nonconformist Geek Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend's Avatar
    Join Date
    Oct 2003
    Location
    SoCal, USA
    Age
    29
    Posts
    5,566
    0 0

    Default Re: how do you compile packages in xubuntu

    You don't have to compile Azureus, and you can't compile Sun Java, because the source code is not available (yet -- they may open the source soon). All you need to do is
    1. Download and Install Java
    2. Download and install Azureus

  5. #5
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default Re: how do you compile packages in xubuntu

    how do you install them after they dl
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  6. #6
    Nonconformist Geek Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend has much to be proud of Anti-Trend's Avatar
    Join Date
    Oct 2003
    Location
    SoCal, USA
    Age
    29
    Posts
    5,566
    0 0

    Default Re: how do you compile packages in xubuntu

    Well, first of all, which packages did you download?

  7. #7
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default Re: how do you compile packages in xubuntu

    both in the links above
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  8. #8
    Geek Geek Geek! megamaced is on a distinguished road megamaced's Avatar
    Join Date
    Nov 2005
    Location
    London
    Age
    26
    Posts
    3,487
    0 0

    Default Re: how do you compile packages in xubuntu

    For Java and other restriced formats, look here

  9. #9
    out of date zeus is on a distinguished road zeus's Avatar
    Join Date
    May 2003
    Location
    Cestrian living in Worthenbury, Wales!
    Age
    28
    Posts
    1,805
    0 0

    Default Re: how do you compile packages in xubuntu

    Quote Originally Posted by jester45 View Post
    i think it is easy once you figure out how it works
    There are always help files with source downloads. But compiling isnt as simple as typing a few commands. You have to configure it all first which is sometimes simple but often not.

    generally, from the source directory
    ./configure --prefix=/usr &&
    make
    make install

    But I wouldnt bother if I were you, stick to binaries! The ./configure often requires LOADS of extras added and what about package management?
    Last edited by zeus; 03-09-2006 at 11:54 PM.

  10. #10
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default Re: how do you compile packages in xubuntu

    ok i just got the mutiveres repostiory on and im working on installing somethings now i will edit this if i find a problems

    didnt have any problems installing java azureus or mplayer
    Last edited by jester45; 04-09-2006 at 12:58 AM.
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  11. #11
    Geek Geek Geek! megamaced is on a distinguished road megamaced's Avatar
    Join Date
    Nov 2005
    Location
    London
    Age
    26
    Posts
    3,487
    0 0

    Default Re: how do you compile packages in xubuntu

    If you do choose to compile programs from source, you will first need to install the appropriate tools to do it:

    Code:
    sudo apt-get install build-essential

  12. #12
    The King Addis is a splendid one to behold Addis is a splendid one to behold Addis is a splendid one to behold Addis is a splendid one to behold Addis is a splendid one to behold Addis is a splendid one to behold Addis is a splendid one to behold Addis's Avatar
    Join Date
    Jan 2004
    Location
    St. Helens, UK
    Age
    20
    Posts
    5,260
    0 0

    Default Re: how do you compile packages in xubuntu

    Quote Originally Posted by zeus View Post
    There are always help files with source downloads. But compiling isnt as simple as typing a few commands. You have to configure it all first which is sometimes simple but often not.

    generally, from the source directory
    ./configure --prefix=/usr &&
    make
    make install

    But I wouldnt bother if I were you, stick to binaries! The ./configure often requires LOADS of extras added and what about package management?
    Not always, I've compiled many programs with just a plain ./configure and then compile goes fine as long as the necessary variables are set/right packages installed.
    Never trust a program you don't have the source code for.

    My website | Powerful Desktop Linux | Linux for human beings | Linux for power users | Linux for ricers

  13. #13
    out of date zeus is on a distinguished road zeus's Avatar
    Join Date
    May 2003
    Location
    Cestrian living in Worthenbury, Wales!
    Age
    28
    Posts
    1,805
    0 0

    Default Re: how do you compile packages in xubuntu

    Quote Originally Posted by Addis View Post
    Not always, I've compiled many programs with just a plain ./configure and then compile goes fine as long as the necessary variables are set/right packages installed.
    Yeah, Xfce is a simple ./configure. I was quite surprised by that one.

  14. #14
    Big Geek wanna be jester45 is on a distinguished road jester45's Avatar
    Join Date
    May 2006
    Location
    STL, Missouri
    Age
    19
    Posts
    251
    0 0

    Default Re: how do you compile packages in xubuntu

    i compiled something after about 2hours it was a dvd ripping tool it was cool but tok forever but i hope i never have to complie something big
    Need hosting? complete webhost including web design http://vidd.us
    www.xubuntu.com www.kubuntu.com
    irc.freenode.net #ubuntu

  15. #15
    out of date zeus is on a distinguished road zeus's Avatar
    Join Date
    May 2003
    Location
    Cestrian living in Worthenbury, Wales!
    Age
    28
    Posts
    1,805
    0 0

    Default Re: how do you compile packages in xubuntu

    Open office took something daft like 11hrs for me. To get a good BLFS "distro" going takes well over 25hrs of compiling! Another good thing about binaries.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Xubuntu on a mac
    By Ghostman 1 in forum Linux and Other OSes
    Replies: 6
    Last Post: 16-06-2006, 02:52 AM
  2. I've actually managed to compile a program!
    By megamaced in forum Linux and Other OSes
    Replies: 5
    Last Post: 15-05-2006, 03:31 PM
  3. .deb packages
    By megamaced in forum Linux and Other OSes
    Replies: 1
    Last Post: 27-04-2006, 09:52 PM
  4. Xubuntu 6.06 Beta
    By megamaced in forum Linux and Other OSes
    Replies: 3
    Last Post: 22-04-2006, 07:25 PM
  5. Hl2 Packages.. WTF?
    By ProcalX in forum PC Gaming
    Replies: 10
    Last Post: 13-01-2005, 01:36 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts