0298.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Using Free VPN Service on Linux - RiseUpVPN</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="Install Guide,Home Lab Ideas,VPN,Virtual Private Network,Free VPN,RiseUp VPN,How To Use RiseUp VPN In Linux,Debian,Linux,Home Lab,VPN Solution,How To,Tutorial,i12bretro">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Using Free VPN Service on Linux - RiseUpVPN">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <meta name="revised" content="12/28/2022 08:36:32 AM" />
  12. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  13. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  14. <script type="text/javascript" src="includes/js/steps.js"></script>
  15. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  16. </head>
  17. <body>
  18. <div id="gridContainer">
  19. <div class="topMargin"></div>
  20. <div id="listName" class="topMargin">
  21. <h1>Using Free VPN Service on Linux - RiseUpVPN</h1>
  22. </div>
  23. <div></div>
  24. <div id="content">
  25. <p>From https://riseup.net/en/vpn: <em>Riseup offers Personal VPN service for censorship circumvention, location anonymization and traffic encryption. To make this possible, it sends all your internet traffic through an encrypted connection to riseup.net, where it then goes out onto the public internet. Unlike most other VPN providers, Riseup does not log your IP address.</em></p>
  26. <ol>
  27. <li>Log into the Linux device</li>
  28. <li>Run the following commands in terminal
  29. <div class="codeBlock"># update software repositories<br />
  30. supo apt update<br />
  31. # install leap keyring<br />
  32. sudo apt install leap-archive-keyring<br />
  33. # add the riseup software apt repository<br />
  34. echo &quot;deb https://deb.leap.se/client release buster&quot; | sudo tee -a /etc/apt/sources.list.d/leap.list<br />
  35. # update software repositories<br />
  36. sudo apt update<br />
  37. # install riseup vpn<br />
  38. sudo apt install riseup-vpn<br />
  39. # run riseup vpn<br />
  40. riseup-vpn</div>
  41. </li>
  42. </ol> </div>
  43. </div>
  44. </body>
  45. </html>