installing cpuminer on Ubuntu 14.04.4 x64 Unicorn Meta Zoo #1: Why another podcast? ...
How to translate "red flag" into Spanish?
What do you call the part of a novel that is not dialog?
"Rubric" as meaning "signature" or "personal mark" -- is this accepted usage?
Multiple fireplaces in an apartment building?
Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?
Justification for leaving new position after a short time
With indentation set to `0em`, when using a line break, there is still an indentation of a size of a space
Retract an already submitted recommendation letter (written for an undergrad student)
Do I need to protect SFP ports and optics from dust/contaminants? If so, how?
My bank got bought out, am I now going to have to start filing tax returns in a different state?
How can I wire a 9-position switch so that each position turns on one more LED than the one before?
Multiple options vs single option UI
c++ diamond problem - How to call base method only once
How to get even lighting when using flash for group photos near wall?
Where did Arya get these scars?
Is it acceptable to use working hours to read general interest books?
Check if a string is entirely made of the same substring
PIC mathematical operations weird problem
Could moose/elk survive in the Amazon forest?
Mistake in years of experience in resume?
Trumpet valves, lengths, and pitch
Has a Nobel Peace laureate ever been accused of war crimes?
Are these square matrices always diagonalisable?
What is this word supposed to be?
installing cpuminer on Ubuntu 14.04.4 x64
Unicorn Meta Zoo #1: Why another podcast?
Announcing the arrival of Valued Associate #679: Cesar ManaraStarting PostgreSQL server, postgres user unknownHow do you install a GUI on Ubuntu Server in Google Compute Engine (GCE)?Configure Django on Ubuntu Apache subdirectoryLimit SFTP user access to specified directoryCan't connect to PPTP server on Ubuntu 14Kickstart file not downloadedConnecting ubuntu server to the internetError while setting up a RTMP Server - make errorUbuntu 14.04 x64 Server Apache 2 - replacing index.html shows index of/ instead?Command line Java: Error: A JNI error has occurred/Exception in thread “main” java.lang.NoClassDefFoundError
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I have just set up a server and trying to install cpuminer following this:https://help.ubuntu.com/community/cpuminer
I have downloaded cpuminer and is currently located at /cpuminer.
However im not quite sure on how to run the compile command?
I do the following:
cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make
This just returns nothing? What am i doing wrong?
Thanks
14.04
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have just set up a server and trying to install cpuminer following this:https://help.ubuntu.com/community/cpuminer
I have downloaded cpuminer and is currently located at /cpuminer.
However im not quite sure on how to run the compile command?
I do the following:
cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make
This just returns nothing? What am i doing wrong?
Thanks
14.04
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
I have just set up a server and trying to install cpuminer following this:https://help.ubuntu.com/community/cpuminer
I have downloaded cpuminer and is currently located at /cpuminer.
However im not quite sure on how to run the compile command?
I do the following:
cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make
This just returns nothing? What am i doing wrong?
Thanks
14.04
I have just set up a server and trying to install cpuminer following this:https://help.ubuntu.com/community/cpuminer
I have downloaded cpuminer and is currently located at /cpuminer.
However im not quite sure on how to run the compile command?
I do the following:
cd cpuminer ./autogen.sh ./configure CFLAGS="-O3" make
This just returns nothing? What am i doing wrong?
Thanks
14.04
14.04
asked Jun 28 '16 at 16:00
danyodanyo
10613
10613
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 11 hours ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
The default build directory is /home/[name]/tmp/, or other folder in /home/[name]/. (Not the Desktop/).
No issues with Ubuntu 14.04.5 - 64 :
$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git
$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make
... and the executable minerd
is created. And you can do : sudo make install
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
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%2f792365%2finstalling-cpuminer-on-ubuntu-14-04-4-x64%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The default build directory is /home/[name]/tmp/, or other folder in /home/[name]/. (Not the Desktop/).
No issues with Ubuntu 14.04.5 - 64 :
$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git
$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make
... and the executable minerd
is created. And you can do : sudo make install
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
add a comment |
The default build directory is /home/[name]/tmp/, or other folder in /home/[name]/. (Not the Desktop/).
No issues with Ubuntu 14.04.5 - 64 :
$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git
$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make
... and the executable minerd
is created. And you can do : sudo make install
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
add a comment |
The default build directory is /home/[name]/tmp/, or other folder in /home/[name]/. (Not the Desktop/).
No issues with Ubuntu 14.04.5 - 64 :
$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git
$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make
... and the executable minerd
is created. And you can do : sudo make install
The default build directory is /home/[name]/tmp/, or other folder in /home/[name]/. (Not the Desktop/).
No issues with Ubuntu 14.04.5 - 64 :
$ sudo apt-get install g++ libcurl4-openssl-dev libncurses5-dev pkg-config automake yasm git
$ cd tmp/
$ git clone https://github.com/pooler/cpuminer.git
$ cd cpuminer/
$ ./autogen.sh
$ ./configure
$ make
... and the executable minerd
is created. And you can do : sudo make install
answered Jun 28 '16 at 22:01
Knud LarsenKnud Larsen
1,696167
1,696167
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
add a comment |
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
Thanks, the reason was some of the dependencies didn't download, i went through and re-added them. Thanks!
– danyo
Jun 28 '16 at 22:34
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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%2f792365%2finstalling-cpuminer-on-ubuntu-14-04-4-x64%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