Page 3 of 4

Re: Linux version

Posted: Tue Jun 01, 2021 6:50 pm
by arthurk
klemm_christian wrote:
Tue Jun 01, 2021 3:33 pm
Hey 
I use mint cinnamon.
when I run the bookmap_runscriptsh data from console it starts but at any time it stopped without installing.
I start the data with a dpoublle click not with orders in the console .
Thr screen is frozen. I installed mint now for 3 times. Any Idea ?
Thx

Presumably, there's not enough entropy on your machine to generate random values.
Answered in private messages how to fix this.

Re: Linux version

Posted: Mon Jun 21, 2021 7:49 pm
by l_eduardos7
arthurk wrote:
Tue Jun 01, 2021 6:50 pm
klemm_christian wrote:
Tue Jun 01, 2021 3:33 pm
Hey 
I use mint cinnamon.
when I run the bookmap_runscriptsh data from console it starts but at any time it stopped without installing.
I start the data with a dpoublle click not with orders in the console .
Thr screen is frozen. I installed mint now for 3 times. Any Idea ?
Thx

Presumably, there's not enough entropy on your machine to generate random values.
Answered in private messages how to fix this.

Hey, Apparently I have the same problem. I managed to install the first time through the terminal, but I thought it would generate an application to run the Bookmap, however to access it, I have to run the .sh file and do all the introduction again. If possible, I would like you to help me solve the problem. Thx
 
[img]data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAA/0lEQVR4AYXNMSiEcRyA4cfmGHQbCZIipkuxnJgMStlMNmeyD2dwmc8+sZgxYJd9ErIZFHUyYYD7fkr6l4/rnvmtl7+KitrqV/fq2Y5eLY3Z9S48eRLe7BmVZ9qhTLhQ0algzZWQOVKSsCF8OjAnwbxDTWFDUhPK/jMr1H6HE/IqRky2DyvCefuwItwZzodVoYRiLqMkVCXrwpJ9twZ+sgfDYEFYl8wIWxZ9uFf7zkallxlJh4YrLGsKjZRx7VGHhLqwgFUN45DGdb8MeXGpgB4ABZdeDcpZEY51A+hyLKz4S1W4MQWm3AibWtgWmk6dyISa1pSdyWTOlLXVp0+eL9D/ZPfBTNanAAAAAElFTkSuQmCC[/img]

Re: Linux version

Posted: Tue Jun 22, 2021 9:04 am
by Svyatoslav
Hi. To have more entropy - just install haveged or other similar tool. Such tools will attempt collecting more entropy from various sources. It is theoretically not ideal for some security aspects (all kinds of key generation), but I am not aware of any practical attacks that would exploit it.

Re: Linux version

Posted: Wed Jun 23, 2021 10:26 am
by arthurk
l_eduardos7 wrote:
Mon Jun 21, 2021 7:49 pm
arthurk wrote:
Tue Jun 01, 2021 6:50 pm
klemm_christian wrote:
Tue Jun 01, 2021 3:33 pm
Hey 
I use mint cinnamon.
when I run the bookmap_runscriptsh data from console it starts but at any time it stopped without installing.
I start the data with a dpoublle click not with orders in the console .
Thr screen is frozen. I installed mint now for 3 times. Any Idea ?
Thx

Presumably, there's not enough entropy on your machine to generate random values.
Answered in private messages how to fix this.

Hey, Apparently I have the same problem. I managed to install the first time through the terminal, but I thought it would generate an application to run the Bookmap, however to access it, I have to run the .sh file and do all the introduction again. If possible, I would like you to help me solve the problem. Thx
 
[img]data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAAA/0lEQVR4AYXNMSiEcRyA4cfmGHQbCZIipkuxnJgMStlMNmeyD2dwmc8+sZgxYJd9ErIZFHUyYYD7fkr6l4/rnvmtl7+KitrqV/fq2Y5eLY3Z9S48eRLe7BmVZ9qhTLhQ0algzZWQOVKSsCF8OjAnwbxDTWFDUhPK/jMr1H6HE/IqRky2DyvCefuwItwZzodVoYRiLqMkVCXrwpJ9twZ+sgfDYEFYl8wIWxZ9uFf7zkallxlJh4YrLGsKjZRx7VGHhLqwgFUN45DGdb8MeXGpgB4ABZdeDcpZEY51A+hyLKz4S1W4MQWm3AibWtgWmk6dyISa1pSdyWTOlLXVp0+eL9D/ZPfBTNanAAAAAElFTkSuQmCC[/img]
Hey! What .sh file do, is run Bookmap app. There's no standard installation process on Linux. You just need to download archive, unzip it and run .sh file. That's all. You need to run .sh file each time you want to run Bookmap. 

About the problem when Bookmap freezes at startup:
One of the possible reasons why Bookmap hangs on startup is due to the empty entropy pool on your computer as Svyatoslav said above.
Below it's the instruction on how to install haveged entropy daemon to solve Bookmap freezes at startup.

If you run cat /dev/random in terminal, you'll probably see that there's not much data. So when you use /dev/random and the entropy pool is empty it will block until it reads enough noise from drivers (mouse/keyboard/CPU etc.) to generate value, it explains why Bookmap freezes.
To solve this problem you could install entropy daemon haveged. You can remove it whenever you want.

To install it you need to run 2 commands in your console:  
sudo apt-get install haveged                                                
sudo update-rc.d haveged defaults

(I took the above commands from here https://www.techrepublic.com/article/ho ... -on-linux/ , but I used them previously they should work)
 After that if you run cat /dev/random command again, you'll find that there's a lot of random bytes are generated by daemon. (may need a reboot)
I believe it should fix your problem.

Good luck!

Re: Linux version

Posted: Tue Aug 31, 2021 2:58 pm
by zerovolt
Can you update last version link to use https? Some browser will complain download from http.

Re: Linux version

Posted: Wed Sep 01, 2021 7:47 am
by Andry API support
zerovolt
We have changed all links in this thread to https. Please let us know if any issue is still there.

Re: Linux version

Posted: Mon Dec 20, 2021 4:31 pm
by tunyalit
How to install Bookmap on Ubuntu?

Re: Linux version

Posted: Tue Dec 21, 2021 8:01 am
by arthurk
tunyalit wrote:
Mon Dec 20, 2021 4:31 pm
How to install Bookmap on Ubuntu?

Hi, we don't have a Linux installer currently, but we often build Bookmap archives for Linux users. 
To be able to run Bookmap on Linux you need to download an archive (7.2 or 7.3 version), extract it to a separate folder, and then run it from your terminal:

Code: Select all

cd to_folder_where_bookmap_extracted
./bookmap_runscript.sh
Download Bookmap you can here:
7.2 - https://bookmap.com/current/beta/linux
7.3 - https://bookmap.com/current/alpha/linux

Re: Linux version

Posted: Thu Dec 29, 2022 12:55 am
by denizornek
hi , ı have ubuntu   and ı m very sad ,  it didnt install with .sh ?

Re: Linux version

Posted: Thu Dec 29, 2022 2:15 pm
by arthurk
denizornek wrote:
Thu Dec 29, 2022 12:55 am
hi , ı have ubuntu   and ı m very sad ,  it didnt install with .sh ?

Hi. As written in the previous post, we do not have a Linux installer. The .sh file doesn't install Bookmap, it's a startup script. It should run Bookmap if you run bookmap_runscript.sh file from the terminal.

If you're having trouble running Bookmap from the terminal, please provide us with more information and we'll try to help you.