User Tools

Site Tools


computing:chatmail

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
computing:chatmail [2026/09/08 02:14] oemb1905computing:chatmail [2026/09/08 02:20] (current) oemb1905
Line 32: Line 32:
   chmod 700 ~/.ssh   chmod 700 ~/.ssh
   chmod 600 ~/.ssh/id_ed25519   chmod 600 ~/.ssh/id_ed25519
-  printf 'Host mail.haacknet.org\n  HostName 127.0.0.1\n  User root\n  IdentityFile ~/.ssh/id_ed25519\n  IdentitiesOnly yes\n' > ~/.ssh/config+   
 +Let's now create a config file for ssh so we don't go out and back in but instead ssh directly into localhost: 
 +   
 +  su - worker 
 +  nano ~/.ssh/config 
 + 
 +Inside that, put the following: 
 + 
 +<code> 
 +Host mail.haacknet.org 
 +HostName 127.0.0.1 
 +User root 
 +IdentityFile ~/.ssh/id_ed25519 
 +IdentitiesOnly yes 
 +</code> 
 + 
 +When exchanging keys, you will need to use the ''-f'' flagOkay, now let's set perms and start configuring the instance. 
   chmod 600 ~/.ssh/config   chmod 600 ~/.ssh/config
   git clone https://github.com/chatmail/chatmail.git   git clone https://github.com/chatmail/chatmail.git
computing/chatmail.txt · Last modified: by oemb1905