Find the answer to your Linux question:
Results 1 to 4 of 4
hi guys, i had downloaded xinetd from debian packages.,i had extracted the tar, ./configure,make,make install it with no problems.,but the big thing is that i can't install it,i think it ...
  1. #1
    Just Joined!
    Join Date
    Jan 2008
    Posts
    2

    Smile how to convert to .deb

    hi guys,

    i had downloaded xinetd from debian packages.,i had extracted the tar, ./configure,make,make install it with no problems.,but the big thing is that i can't install it,i think it must be converted to .deb for xinetd to install as package.,i had already read the README files and google for two weeks but to no avail.i think i need ur expertise on this guys,pls. pardon me i'm just two months old at linux..kindly extend ur assistance on this..many thanks in advance..

    rumz:

  2. #2
    Super Moderator devils casper's Avatar
    Join Date
    Jun 2006
    Location
    Chandigarh, India
    Posts
    24,316
    Hi and Welcome !

    I had downloaded xinetd from debian packages.,i had extracted the tar, ./configure,make,make install it with no problems.,but the big thing is that i can't install it
    If ./configure, make and make install commands havn't threw any error then xinetd has been installed already. Execute 'which xinetd' command.

    Its not possible to convert source packages ( .tar ) in .deb format easily.
    You should install it through Package Manager only. If your machine has internet access then execute this
    Code:
    su -
    apt-get update
    apt-get install xinetd
    It is amazing what you can accomplish if you do not care who gets the credit.
    New Users: Read This First

  3. #3
    Just Joined!
    Join Date
    Jan 2008
    Posts
    2
    Quote Originally Posted by devils_casper View Post
    Hi and Welcome !


    If ./configure, make and make install commands havn't threw any error then xinetd has been installed already. Execute 'which xinetd' command.

    Its not possible to convert source packages ( .tar ) in .deb format easily.
    You should install it through Package Manager only. If your machine has internet access then execute this
    Code:
    su -
    apt-get update
    apt-get install xinetd
    thanks it's already workin...

  4. #4
    Just Joined! zonker66's Avatar
    Join Date
    Jun 2006
    Posts
    19
    instead of ./configure, make and make install, you can do ./configure, make and then checkinstall.
    checkinstall is apt-gettable, and will create a .deb package that is easy to remove again with any package manager. This is imho way better than make install

Posting Permissions

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