BitcoinHoarder
|
|
December 07, 2012, 04:14:22 PM |
|
I really want to install this thing... can anyone help me?? I created issue on github but no comments or anything... when I type make I get this. user@JLaptop:~/MyPrograms/VanityAddr/vanitygen-master$ make cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c vanitygen.c:26:25: fatal error: openssl/sha.h: No such file or directory compilation terminated. make: *** [vanitygen.o] Error 1 Do you have openssl installed?
|
|
|
|
mskwik
|
|
December 07, 2012, 04:15:26 PM |
|
I really want to install this thing... can anyone help me?? I created issue on github but no comments or anything... when I type make I get this. user@JLaptop:~/MyPrograms/VanityAddr/vanitygen-master$ make cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c vanitygen.c:26:25: fatal error: openssl/sha.h: No such file or directory compilation terminated. make: *** [vanitygen.o] Error 1 You need the openssl headers installed, depending on the distro it would normally be a package like "openssl-dev" or "libssl-dev"
|
|
|
|
jl2035
|
|
December 08, 2012, 01:05:48 PM |
|
You need the openssl headers installed, depending on the distro it would normally be a package like "openssl-dev" or "libssl-dev"
Thanks... I'm on Ubuntu 12.04 LTS. I thought I had openssl installed, because if I typed "openssl version" there was an output... anyway I also installed this libssl-dev (there was no package openssl-dev) and now I get a little different output... user@JLaptop:~/MyPrograms/VanityAddr/vanitygen-master$ make cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c cc -ggdb -O3 -Wall -c -o pattern.o pattern.c pattern.c:32:18: fatal error: pcre.h: No such file or directory compilation terminated. make: *** [pattern.o] Error 1 any ideas..?
|
|
|
|
BkkCoins
|
|
December 08, 2012, 01:32:05 PM |
|
You need the openssl headers installed, depending on the distro it would normally be a package like "openssl-dev" or "libssl-dev"
Thanks... I'm on Ubuntu 12.04 LTS. I thought I had openssl installed, because if I typed "openssl version" there was an output... anyway I also installed this libssl-dev (there was no package openssl-dev) and now I get a little different output... user@JLaptop:~/MyPrograms/VanityAddr/vanitygen-master$ make cc -ggdb -O3 -Wall -c -o vanitygen.o vanitygen.c cc -ggdb -O3 -Wall -c -o pattern.o pattern.c pattern.c:32:18: fatal error: pcre.h: No such file or directory compilation terminated. make: *** [pattern.o] Error 1 any ideas..? You also need the "libpcre3-dev" package, or some similar one (don't recall now). It isn't clear about this in the INSTALL help file but I guess the dev expects everyone has most of this already installed. These dev packages usually have the header file (*.h) so any time you see a message about missing h files it's usually some dev package missing.
|
|
|
|
jl2035
|
|
December 08, 2012, 05:32:33 PM |
|
Whoa!! This is the first time in my life that I successfully executed make command... usually I don't even get through ./configure Thanks guys!
|
|
|
|
crazyates
Legendary
Offline
Activity: 952
Merit: 1000
|
|
December 08, 2012, 08:11:17 PM |
|
Whoa!! This is the first time in my life that I successfully executed make command... usually I don't even get through ./configure Thanks guys! "You step into the Road, and if you don't keep your feet, there is no telling where you might be swept off to." Welcome to the world of Linux.
|
|
|
|
BkkCoins
|
|
December 08, 2012, 11:48:29 PM |
|
Whoa!! This is the first time in my life that I successfully executed make command... usually I don't even get through ./configure Thanks guys! btw for future reference, and any onlookers, if you get "something.h missing" type messages one way I use to find out what package is needed is to use the apt-cache command to locate one suitable. eg. pcre.h seems to be missing apt-cache search pcre This looks at the packages available and lists ones containing pcre. By looking thru that list you can often figure out which one is needed. In this case you want something with lib, dev, and C since the program is written in C. Give it a try.
|
|
|
|
jl2035
|
|
December 09, 2012, 03:31:10 PM |
|
"You step into the Road, and if you don't keep your feet, there is no telling where you might be swept off to." Welcome to the world of Linux. I'm using Linux for 5 / 6 years now, and everyday I learn something new. But compiling stuff from source was always a pain in the ass.. btw for future reference, and any onlookers, if you get "something.h missing" type messages one way I use to find out what package is needed is to use the apt-cache command to locate one suitable...
will definitely look at this thread the next time I play with ./configure, make, make install...
|
|
|
|
deepceleron
Legendary
Offline
Activity: 1512
Merit: 1036
|
|
December 09, 2012, 03:39:55 PM |
|
"You step into the Road, and if you don't keep your feet, there is no telling where you might be swept off to." Welcome to the world of Linux. I'm using Linux for 5 / 6 years now, and everyday I learn something new. But compiling stuff from source was always a pain in the ass.. You haven't lived until you've compiled your operating system from source code by downloading every individual software package from it's repository: http://www.linuxfromscratch.org/lfs/view/stable/
|
|
|
|
Deafboy
|
|
December 09, 2012, 07:32:05 PM |
|
I have issues trying to compile oclvanitygen on Linux x86_64. AMD APP SDK installed, I have correct path set in env: AMDAPPSDKROOT=/opt/AMDAPP [deafboy@Planetexpress vanitygen-master]$ make oclvanitygen cc -ggdb -O3 -Wall -c -o oclengine.o oclengine.c oclengine.c:37:19: fatal error: CL/cl.h: No such file or directory compilation terminated. make: *** [oclengine.o] Error 1 [deafboy@Planetexpress vanitygen-master]$
[deafboy@Planetexpress vanitygen-master]$ ll /opt/AMDAPP/include/CL total 400K -rwxr-xr-x 1 501 501 14K Nov 29 05:58 cl_ext.h* -rwxr-xr-x 1 501 501 2.6K Nov 29 05:58 cl_gl_ext.h* -rwxr-xr-x 1 501 501 7.3K Nov 29 05:58 cl_gl.h* -rwxr-xr-x 1 501 501 61K Nov 29 05:58 cl.h* -rwxr-xr-x 1 501 501 263K Nov 29 05:58 cl.hpp* -rwxr-xr-x 1 501 501 38K Nov 29 05:58 cl_platform.h* -rwxr-xr-x 1 501 501 1.8K Nov 29 05:58 opencl.h* [deafboy@Planetexpress vanitygen-master]$
|
|
|
|
crazyates
Legendary
Offline
Activity: 952
Merit: 1000
|
|
December 09, 2012, 08:39:48 PM |
|
"You step into the Road, and if you don't keep your feet, there is no telling where you might be swept off to." Welcome to the world of Linux. I'm using Linux for 5 / 6 years now, and everyday I learn something new. But compiling stuff from source was always a pain in the ass.. You haven't lived until you've compiled your operating system from source code by downloading every individual software package from it's repository: http://www.linuxfromscratch.org/lfs/view/stable/I used Gentoo for a year and a half. Took me 6 tries to finally get an install that was usable haha! It's still my favorite distro, in a "I love you, but if you fuck me up one more time Ima throw you out the window" kinda way. Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
|
|
|
|
BkkCoins
|
|
December 10, 2012, 01:03:53 AM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse.
|
|
|
|
crazyates
Legendary
Offline
Activity: 952
Merit: 1000
|
|
December 10, 2012, 03:16:14 AM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse. IIRC, games don't run that great in a virtualized windows installation?
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
December 10, 2012, 08:20:14 AM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse. IIRC, games don't run that great in a virtualized windows installation? thats why wine exist
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
jl2035
|
|
December 10, 2012, 03:23:05 PM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse. IIRC, games don't run that great in a virtualized windows installation? thats why wine exist This pisses me off! Corp. Software is windooze only because of the lazy and ignorant users! There will be games for linux and of course Photoshop for linux but not before you all change some ways. On the other hand ... things are changing.. Microsoft's rule is ending and it is going down.. So probably there is a better tomorrow... I say: - f*** windoz - f*** micro$oft - f*** wine - every piece of software should be packaged for linux And for all those who still are on the dark side: Micro$oft was created by Bill Gates. Bill Gates is a nazi. Bill Gates wants you dead... all of us... If you don't believe me ... do some research. PS: I hope my post is not to hardcore
|
|
|
|
crazyates
Legendary
Offline
Activity: 952
Merit: 1000
|
|
December 10, 2012, 07:26:50 PM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse. IIRC, games don't run that great in a virtualized windows installation? thats why wine exist Wine doesnt always work. I've gotten it to work some some older games, but I've also had it bug out on me plenty. In short, you can't trust it to work 100% of the time. And I'm not even going to respond to jl.
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
December 10, 2012, 11:23:47 PM |
|
Unfortunately, some programs are Windooze only, and I just found a dual boot to be a PITA, so I stopped using it.
That's what virtualbox is for. I mean running Windows under linux, of course, not the reverse. IIRC, games don't run that great in a virtualized windows installation? thats why wine exist Wine doesnt always work. I've gotten it to work some some older games, but I've also had it bug out on me plenty. In short, you can't trust it to work 100% of the time. And I'm not even going to respond to jl. well, if something dosnt work then there are enough ppl to help u get it running. there is a wiki with hacks/tweaks/etc so there is enough informations, not even to talk about the devs @ the bugtracker (including me).
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
crazyates
Legendary
Offline
Activity: 952
Merit: 1000
|
|
December 11, 2012, 03:09:27 AM |
|
Wine doesnt always work. I've gotten it to work some some older games, but I've also had it bug out on me plenty. In short, you can't trust it to work 100% of the time. And I'm not even going to respond to jl. well, if something dosnt work then there are enough ppl to help u get it running. there is a wiki with hacks/tweaks/etc so there is enough informations, not even to talk about the devs @ the bugtracker (including me). This is getting a lil OT, but if I do decide to get swtor working in Wine, i'll PM ya. In the mean time, I'd rather have Oclvanitygen fixed so it can work on my 7970 without the -S flag!
|
|
|
|
K1773R
Legendary
Offline
Activity: 1792
Merit: 1008
/dev/null
|
|
December 11, 2012, 09:47:16 AM |
|
Wine doesnt always work. I've gotten it to work some some older games, but I've also had it bug out on me plenty. In short, you can't trust it to work 100% of the time. And I'm not even going to respond to jl. well, if something dosnt work then there are enough ppl to help u get it running. there is a wiki with hacks/tweaks/etc so there is enough informations, not even to talk about the devs @ the bugtracker (including me). This is getting a lil OT, but if I do decide to get swtor working in Wine, i'll PM ya. In the mean time, I'd rather have Oclvanitygen fixed so it can work on my 7970 without the -S flag! sure, just send me a PM if u need help with wine/linux/similiar b2t!
|
[GPG Public Key]BTC/DVC/TRC/FRC: 1 K1773RbXRZVRQSSXe9N6N2MUFERvrdu6y ANC/XPM A K1773RTmRKtvbKBCrUu95UQg5iegrqyeA NMC: N K1773Rzv8b4ugmCgX789PbjewA9fL9Dy1 LTC: L Ki773RBuPepQH8E6Zb1ponoCvgbU7hHmd EMC: E K1773RxUes1HX1YAGMZ1xVYBBRUCqfDoF BQC: b K1773R1APJz4yTgRkmdKQhjhiMyQpJgfN
|
|
|
Ente
Legendary
Offline
Activity: 2126
Merit: 1001
|
|
December 12, 2012, 09:37:50 PM Last edit: December 12, 2012, 09:58:35 PM by Ente |
|
..trying vanitypool at the moment. On windows (not mine! heh) I get this error: oclvanityminer64.exe -u https://vanitypool.appspot.com/ -a 1xxx Get work request failed: Peer certificate cannot be authenticated with given CA certificates edit: it's "vanitygen-0.22-win.zip", with the executables inside and the .pem cert.. Any hints? Will check in a second on my linux.. edit2: What dependencies does oclvanityminer have on linux..? I installed libpcre3 libpcre3-dev libssl-dev curl libcurl4-openssl-dev so far.. still have oclengine.c:37:19: error: CL/cl.h now.. *sigh* Ente
|
|
|
|
|