News:

Once you registration is approved you will see all the Boards on the Forum.  Non members of the forum only see the Public topics

Main Menu

Recent posts

#41
WORD LINK / Re: Word Link 2
Last post by Dingo - July 18, 2026, 12:38:21 PM
~ mine
#42
Prime Crunch / Re: Project Update
Last post by Dingo - July 18, 2026, 12:03:56 PM
Instead of making it a service I found that putting an entry in the crontab.

process in a linux terminal

1. sudo crontab -e  # Note here r is next to e on the keyboard and if you press r instad of e (contab -r) it deletes the crontab which is not good.

2. put this entry after all the commented out section.

@reboot /PATH/TO/crunch -p 4 >/var/log/crunch.log 2>&1 & 
>/var/log/crunch.log 2>&1 & 
##  EG MINE IS  @reboot /root/PrimeCrunch/crunch -p 4 >/var/log/crunch.log 2>&1 & 

NOTE: The -p lets you assign how many Threads to use.  If left off it will use all Threads.
NOTE:  If you forget the & cron will hang until crunch exits — which it never does.

That's it when you reboot or start the machine it will start crunch

If you use this and you want to stop the job from running use this command.

# Stop PrimeCrunch
pkill -f "/PATH/TO/crunch" 2>/dev/null

eg  mine is

pkill -f "/root/PrimeCrunch/crunch" 2>/dev/null


Added the Windows start crunch at machine start

1. Find the crunch program on your computer.

2. Create a shortcut and if you want to restrict the number of cores used in the Target block enter -p [number of cores] after crunch.
eg mine is "C:\Users\giles\PrimeCrunch\crunch.exe -p4"

3.Press the Windows key + R key to open the run box.

4. Paist shell:programs in the box and press enter.  The start menu window will open;

5. Open the StartUp folder and Paste your created shortcut into that folder.

6.  That's it, the first reboot or start you might get a warning asking if you really want to start this program.. If you trust it, well you are running it, click the box to deselect ask next time and press enter or whatever the button says can't remember.

7.  To stop crunch from starting at startup open the Task Manager and click the Startup Apps button. Right click on crunch and disable.  Do the opposite to enable it afterwards.



#43
WORD LINK / Re: Word Link 2
Last post by jave808 - July 18, 2026, 11:58:07 AM
~ land
#44
WORD LINK / Re: Word Link 2
Last post by Cruncher Pete - July 17, 2026, 12:44:21 PM
forgotten~
#45
UNIVERSE@HOME / Re: Project Update
Last post by Cruncher Pete - July 17, 2026, 12:43:28 PM
Quote from: Dingo on July 17, 2026, 12:19:37 PMProject is Dead BUT

Quote!

You've been chosen as the Universe@Home user of the day!
        Your profile will be featured on the Universe@Home website for the next 24 hours.
They forgot to mention that it is for ghosts to see only...Ha Ha :wink
#46
WORD LINK / Re: Word Link 2
Last post by Dingo - July 17, 2026, 12:20:12 PM
~ time
#47
UNIVERSE@HOME / Re: Project Update
Last post by Dingo - July 17, 2026, 12:19:37 PM
Project is Dead BUT

Quote!

You've been chosen as the Universe@Home user of the day!
        Your profile will be featured on the Universe@Home website for the next 24 hours.
#48
WORD LINK / Re: Word Link 2
Last post by jave808 - July 17, 2026, 09:48:08 AM
~ night
#49
Prime Crunch / Project Update
Last post by Dingo - July 16, 2026, 01:20:53 AM
I have crunched enough work now to Create the Team.  Join BOINC-AUSTRALIA if you run this non BOINC project.


Keep it running

On Linux, running the client as a systemd service keeps it running across reboots. Create a unit file at /etc/systemd/system/crunch.service:

[Unit]
Description=primecrunch client
After=network-online.target
Wants=network-online.target

[Service]
ExecStart=/path/to/crunch  ## CHANGE THIS
Restart=on-failure
User=yourlinuxusername  ## CHANGE THIS

[Install]
WantedBy=multi-user.target


Then enable and start it:

sudo systemctl enable --now crunch

#50
WORD LINK / Re: Word Link 2
Last post by Cruncher Pete - July 15, 2026, 11:58:36 PM
nighties