install ipkg via command line
up vote
0
down vote
favorite
I'm trying to install ipkg-utils.
However, when I try to install it, it is unable to locate the package
sudo apt-get install ipkg-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ipkg-utils
I tried wget https://dev.openwrt.org/log/trunk/tools/ipkg-utils
(the repository for ipkg), but it didn't work.
I inherited the code. ipkg was used to distribute and need to build an ipkg archive of a PIC build.
ipkg has been superseded by opkg. I have opkg running ok but haven't built anything yet. What I didn't find out was whether I could create an ipkg archive using opkg.
I've been googling for hours with no joy. Does anyone know how to install ipkg?
Distributor ID: Ubuntu
Description: Ubuntu 14.04.1 LTS
Release: 14.04
Codename: trusty
software-installation
add a comment |
up vote
0
down vote
favorite
I'm trying to install ipkg-utils.
However, when I try to install it, it is unable to locate the package
sudo apt-get install ipkg-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ipkg-utils
I tried wget https://dev.openwrt.org/log/trunk/tools/ipkg-utils
(the repository for ipkg), but it didn't work.
I inherited the code. ipkg was used to distribute and need to build an ipkg archive of a PIC build.
ipkg has been superseded by opkg. I have opkg running ok but haven't built anything yet. What I didn't find out was whether I could create an ipkg archive using opkg.
I've been googling for hours with no joy. Does anyone know how to install ipkg?
Distributor ID: Ubuntu
Description: Ubuntu 14.04.1 LTS
Release: 14.04
Codename: trusty
software-installation
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to install ipkg-utils.
However, when I try to install it, it is unable to locate the package
sudo apt-get install ipkg-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ipkg-utils
I tried wget https://dev.openwrt.org/log/trunk/tools/ipkg-utils
(the repository for ipkg), but it didn't work.
I inherited the code. ipkg was used to distribute and need to build an ipkg archive of a PIC build.
ipkg has been superseded by opkg. I have opkg running ok but haven't built anything yet. What I didn't find out was whether I could create an ipkg archive using opkg.
I've been googling for hours with no joy. Does anyone know how to install ipkg?
Distributor ID: Ubuntu
Description: Ubuntu 14.04.1 LTS
Release: 14.04
Codename: trusty
software-installation
I'm trying to install ipkg-utils.
However, when I try to install it, it is unable to locate the package
sudo apt-get install ipkg-utils
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package ipkg-utils
I tried wget https://dev.openwrt.org/log/trunk/tools/ipkg-utils
(the repository for ipkg), but it didn't work.
I inherited the code. ipkg was used to distribute and need to build an ipkg archive of a PIC build.
ipkg has been superseded by opkg. I have opkg running ok but haven't built anything yet. What I didn't find out was whether I could create an ipkg archive using opkg.
I've been googling for hours with no joy. Does anyone know how to install ipkg?
Distributor ID: Ubuntu
Description: Ubuntu 14.04.1 LTS
Release: 14.04
Codename: trusty
software-installation
software-installation
edited Nov 20 at 20:37
asked Dec 1 '14 at 9:55
SeanJ
12718
12718
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
Actually what you are trying to do is quite far from so called simple and you are doing a few things wrong.
First of all, sudo apt-get install ipkg-utils
is bound to fail in the first place and to yield the error message you provided because such package does not exist in the repositories as it shouldn't.
Secondly, the link you provided as a "repository" is not a repository but a commit log.
Furthermore ipkg is discontinued and is commonly been replaced by it's fork: opkg, and ipkg does not have any official packages or sources available. You couldn't even find that information after hours of googling? Even though no questions should be issued in the answers: For what purpose should you need ipkg-utils and is it a must have instead of opkg? No offense, but doesn't seem like you have proper knowledge on package managers to start with...
That aside, you can get opkg sources via command git clone git://git.yoctoproject.org/opkg
and go on building those. On how to build from sources, here's a link to start with: https://help.ubuntu.com/community/CompilingEasyHowTo
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Actually what you are trying to do is quite far from so called simple and you are doing a few things wrong.
First of all, sudo apt-get install ipkg-utils
is bound to fail in the first place and to yield the error message you provided because such package does not exist in the repositories as it shouldn't.
Secondly, the link you provided as a "repository" is not a repository but a commit log.
Furthermore ipkg is discontinued and is commonly been replaced by it's fork: opkg, and ipkg does not have any official packages or sources available. You couldn't even find that information after hours of googling? Even though no questions should be issued in the answers: For what purpose should you need ipkg-utils and is it a must have instead of opkg? No offense, but doesn't seem like you have proper knowledge on package managers to start with...
That aside, you can get opkg sources via command git clone git://git.yoctoproject.org/opkg
and go on building those. On how to build from sources, here's a link to start with: https://help.ubuntu.com/community/CompilingEasyHowTo
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
add a comment |
up vote
0
down vote
Actually what you are trying to do is quite far from so called simple and you are doing a few things wrong.
First of all, sudo apt-get install ipkg-utils
is bound to fail in the first place and to yield the error message you provided because such package does not exist in the repositories as it shouldn't.
Secondly, the link you provided as a "repository" is not a repository but a commit log.
Furthermore ipkg is discontinued and is commonly been replaced by it's fork: opkg, and ipkg does not have any official packages or sources available. You couldn't even find that information after hours of googling? Even though no questions should be issued in the answers: For what purpose should you need ipkg-utils and is it a must have instead of opkg? No offense, but doesn't seem like you have proper knowledge on package managers to start with...
That aside, you can get opkg sources via command git clone git://git.yoctoproject.org/opkg
and go on building those. On how to build from sources, here's a link to start with: https://help.ubuntu.com/community/CompilingEasyHowTo
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
add a comment |
up vote
0
down vote
up vote
0
down vote
Actually what you are trying to do is quite far from so called simple and you are doing a few things wrong.
First of all, sudo apt-get install ipkg-utils
is bound to fail in the first place and to yield the error message you provided because such package does not exist in the repositories as it shouldn't.
Secondly, the link you provided as a "repository" is not a repository but a commit log.
Furthermore ipkg is discontinued and is commonly been replaced by it's fork: opkg, and ipkg does not have any official packages or sources available. You couldn't even find that information after hours of googling? Even though no questions should be issued in the answers: For what purpose should you need ipkg-utils and is it a must have instead of opkg? No offense, but doesn't seem like you have proper knowledge on package managers to start with...
That aside, you can get opkg sources via command git clone git://git.yoctoproject.org/opkg
and go on building those. On how to build from sources, here's a link to start with: https://help.ubuntu.com/community/CompilingEasyHowTo
Actually what you are trying to do is quite far from so called simple and you are doing a few things wrong.
First of all, sudo apt-get install ipkg-utils
is bound to fail in the first place and to yield the error message you provided because such package does not exist in the repositories as it shouldn't.
Secondly, the link you provided as a "repository" is not a repository but a commit log.
Furthermore ipkg is discontinued and is commonly been replaced by it's fork: opkg, and ipkg does not have any official packages or sources available. You couldn't even find that information after hours of googling? Even though no questions should be issued in the answers: For what purpose should you need ipkg-utils and is it a must have instead of opkg? No offense, but doesn't seem like you have proper knowledge on package managers to start with...
That aside, you can get opkg sources via command git clone git://git.yoctoproject.org/opkg
and go on building those. On how to build from sources, here's a link to start with: https://help.ubuntu.com/community/CompilingEasyHowTo
answered Dec 1 '14 at 13:31
Ahti Komu
39727
39727
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
add a comment |
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
You couldn't even find that information after hours of googling. I found that in the first minute on wikipedia
– SeanJ
Dec 3 '14 at 17:30
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Sorry, away elsewhere! Meant to quantify the above.<br/> I found out that ipkg has been essentially superseded by opkg pretty fast. </br>However, what I didn't find out was whether I could create an ipkg archive using opkg. </br> [link]niksula.hut.fi/~ajhseppa/pixie/devkit/… <br/>niksula.hut.fi/~ajhseppa/pixie/devkit/ipk-creation-howto.txt dd-wrt.com/wiki/index.php/Ipkg But ipkg no work, I actually have opkg running ok but haven't built anything yet. New to this
– SeanJ
Dec 3 '14 at 17:53
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
Backgroung: inherited code. ipkg used to distribute. need to build an ipkg archive of a PIC build. yikes!
– SeanJ
Dec 3 '14 at 17:59
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
@SeanJ that last comment is the sort of context useful in the question.
– jdv
Nov 20 at 17:09
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f555291%2finstall-ipkg-via-command-line%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown