Log in to the Pubnix from RDP: Difference between revisions

From Project Segfault Wiki
No edit summary
(Reformat a bit, along with adding sections for easy navigation)
 
Line 1: Line 1:
Along with cockpit and ssh, you can also access the pubnix via RDP.
Along with cockpit and ssh, you can also access the pubnix via RDP. We went with (X)RDP instead of VNC due to it being more performant and secure.


We went with (X)RDP instead of VNC due to it being more performant and secure.  
To do so, first install an RDP client. You can use [https://remmina.org Remmina] on Linux and BSD. On Windows you can use the builtin Remote Desktop Connection Utility.


To do so, first install an RDP client. You can use [https://remmina.org Remmina] on Linux and BSD. On Windows you can use the builtin Remote Desktop Connection Utility.
== How to Connect ==
You can connect to <code>p.projectsegfau.lt</code> from the Quick Connect menu on Remmina. Once the connection is established, you will be prompted for your login credentials for the pubnix.


You can connect to p.projectsegfau.lt from the Quick Connect menu on Remmina.
For those who recently get their registration approved for the pubnix, a password is generated as part of the onboarding process and they are stored at <code>~/pass</code> and you can get its content with <code>cat ~/pass</code>.


Once the connection is established, a login page will popup where you need to put your pubnix credentials.
== Changing default DE/WM ==
Once you are logged in, you will be dropped into XFCE. This is our default DE but you can install any X11 DE/WM you like from [[Install a package on the Pubnix|Nix]] and use it.


They are stored at ~/pass and you can get its content with:<pre>
cat ~/pass
</pre>Once you are logged in, you will be dropped into XFCE.


This is our default DE but you can install any X11 DE/WM you like from [[Install a package on the Pubnix|Nix]] and use it.


To specify the DE/WM you want to use, you can use the .xsession file.<pre>
To specify the DE/WM you want to use, you can use the .xsession file.<pre>
Line 20: Line 18:
</pre>You can replace startxfce4 with the DE/WM of your choice.
</pre>You can replace startxfce4 with the DE/WM of your choice.


Here is a table of common DE/WMs and their command name:
Below is a table of common DE/WMs and their command names. If you're having issues after signing in, try running <code>command -v <startup-command></code> and use that path to binary in <code>.xession</code> file as mentioned above.
{| class="wikitable"
{| class="wikitable"
|+
|+
!DE/WM  
!DE/WM  
!Command  
!Command  
!
|-
|-
|XFCE
|XFCE
|startxfce4
|startxfce4
|
|-
|-
|KDE
|KDE
|startplasma-x11  
|startplasma-x11  
|
|-
|-
|Cinnamon  
|Cinnamon  
|cinnamon
|cinnamon
|
|-
|-
|i3
|i3
|i3
|i3
|
|-
|-
|BSPWM
|BSPWM
|bspwm
|bspwm
|
|-
|-
|Qtile
|Qtile
|qtile start -b x11
|qtile start -b x11
|
|}
|}
[[Category:Pubnix]]
[[Category:Pubnix]]

Latest revision as of 15:06, 30 April 2023

Along with cockpit and ssh, you can also access the pubnix via RDP. We went with (X)RDP instead of VNC due to it being more performant and secure.

To do so, first install an RDP client. You can use Remmina on Linux and BSD. On Windows you can use the builtin Remote Desktop Connection Utility.

How to Connect

You can connect to p.projectsegfau.lt from the Quick Connect menu on Remmina. Once the connection is established, you will be prompted for your login credentials for the pubnix.

For those who recently get their registration approved for the pubnix, a password is generated as part of the onboarding process and they are stored at ~/pass and you can get its content with cat ~/pass.

Changing default DE/WM

Once you are logged in, you will be dropped into XFCE. This is our default DE but you can install any X11 DE/WM you like from Nix and use it.


To specify the DE/WM you want to use, you can use the .xsession file.

# .xsession
exec startxfce4

You can replace startxfce4 with the DE/WM of your choice.

Below is a table of common DE/WMs and their command names. If you're having issues after signing in, try running command -v <startup-command> and use that path to binary in .xession file as mentioned above.

DE/WM Command
XFCE startxfce4
KDE startplasma-x11
Cinnamon cinnamon
i3 i3
BSPWM bspwm
Qtile qtile start -b x11