Advanced Search
Search Results
30 total results found
L1 getting forked
Get the fork outta here!
df - disk space monitoring
Very simple command of df -h (h means human readable...aka GB sizes). df -h Filesystem Size Used Avail Use% Mounted ontmpfs 1.6G 1.8M 1.6G 1% /run/dev/sda3 450G 220G 208G 52% /tmpfs 7.8G 0 7.8G 0% /dev/shmtmpfs ...
watch - continuously run a command and watches for changes.
This command does not run for every application so if you notice issues then its not compatible. So a good example of how watch works is to use it with df command. watch -d df -h So below I'm watching my filesystem and the watch command highlights in whit...
sudo ufw status
UFW STATUS-------------- Shows you the status of your firewall and what ports are being allow from where. Below you see the L0 and L1 ports are opened and SSH. Please remember that you have Ubuntu OS firewall rules and then you have cloud based rules you sh...
htop - Advanced version of top
HTOP------ All Linux OS's come with top (shows top processes and CPU/Memory details. It still does the job but its suggested you install and use HTOP. Do the following.... Login to your node run "apt-get install htop HTOP is now installed. Just run it...
Run Starchiver 2025 to refresh all snapshots (Deletes old snapshots)
NOTE! It is very important your node is not running on the layer 0 cluster at any time during this process. Disable auto-restart sudo nodectl configure -e -d -cbPress R to turn off Auto Restart, then Q to quit. Leave the Layer 1/0 cluster sudo nodectl le...
Nodectl - Node Version details (sudo nodectl -cv)
nodeadmin@Constellation-Node:/scripts$ sudo nodectl -cv[sudo] password for nodeadmin: A new version of [nodectl] was detected........ v2.17.5 To upgrade issue: sudo nodectl upgrade_nodectl ======================================== = CHECK VERS...
Run Starchive cleanup only process
This is an assumption you saved the starchiverT3-ext.sh to /tmp. If its in a different directory please cd /yaddayadda sudo curl -o starchiverT3-ext.sh https://raw.githubusercontent.com/StardustCollective/Starchive-Extractor/main/starchiverT3-ext.shcd /tmpsu...
Automate Starchiver process so your node runs efficiently. (IGNORE FOR NOW---DOCUMENTATION IN PROGRESS)
Create the folder and place script in it You need a permanent place to put the script so do the following mkdir /scripts (This makes the directory) chown nodeadmin:nodeadmin /scripts (This changes the owner to the nodeadmin account) chmod 770 (This allo...
Screen - Run an terminal in the background and if you lose connectivity it still runs
Screen is a utility that lets you run an application/script/terminal and then place it in the background so you can come back to it later. If you were to lose your network connection to your SSH terminal then you can go back to where you were. run "screen"...
nodectl - Refresh Binarines (sudo nodectl refresh_binaries)
sudo nodectl refresh_binaries
Putty - https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html
Launch Putty, put the IP address of your node and make sure SSH is select and the proper port. Normally 22 or 8022. Its normally a good idea to not use 22. Don't forget to save your session after you fill in the IP address so you can reuse the profile. ...
Check your staking returns
Go to https://mainnet.dagexplorer.io/staking Load your wallet plugin and enter the password to open it. The wallet should show up on the top right corner of the staking screen. If not click on connect wallet 4. Click on that same button again a...
Install Stargazer plugin on Microsoft Edge
Note: Microsoft Edge is really Google Chrome re-labed and some Microsoft additives :) Launch Edge Click on settings ... 3. Select Extensions 4. click Manage Extensions 5.Click on Chrome Web Store 6. Search for Stargazer 7. Click on the ...
How staking rewards are compounded
So if you stake 10,000 and make 50 DAG reward... That 50 rewards in your is taken into account for calculating your rewards in the next snapshot. So in the next snapshot, it will calculate your rewards based on 10050 staked DAG (instead of your initial 10k). ...
Build Word Document for Ionos
Please see attached PDF or Word Document (left side of screen)
DAG related URLs
Main Website - https://constellationnetwork.io/DAG Explorer - https://mainnet.dagexplorer.io/
Debug related URLs
Port testing (Test your ports 9000, 9001, 9010, 9011) https://www.yougetsignal.com/tools/open-ports/ Crontab GURU (Lets you run scripts at a certain time) I use this to restart L1 at midnight daily. https://crontab.guru/every-day-at-midnight
nodectl - Install new node via command line with PK12 option
If your P12 password is not working its due to a bug. Run the following command to do the install. sudo nodectl install --quick-install --p12-migration-path /root/your.p12 --p12-passphrase 'AbcXyzab1$$' IMPORTANT!! Once you run this command your passphrase ...
Make scripts to make your life easier!
This will create the folder for you to store your scrips in. Open terminal sudo mkdir /scripts chmod 770 /scripts chown root:nodeadmin /scripts Create scripts Scripts are easy to create with nano. They are just the same one line command you would ...