Search results

  1. CaffeineAddict

    I finally did it. Windows in the trash!

    All extensions work on Linux just fine, at least all of those which I use work on Linux, I heavily use extensions and they all work. Reason they work is because they're written in TypeScript which is the language of VSCode extensions API, so there is no platform specific code. Those extensions...
  2. CaffeineAddict

    I finally did it. Windows in the trash!

    lol no! VSCode is cross platform, there is Linux variant as well: https://code.visualstudio.com/download
  3. CaffeineAddict

    I finally did it. Windows in the trash!

    For pleasant programming you shouldn't care so much about distro and DE, but rather about your development tools and environment. Debian + LXDE will surely save you a lot of resources that can be otherwise spent for development tools. VSCode for instance might consume large amounts of memory...
  4. CaffeineAddict

    I finally did it. Windows in the trash!

    LXDE is the least resource consuming among all DE's I know of, so if you want to go a low as possible then LXDE But keep in mind that those low resource DE's aren't feature rich like KDE or GNOME
  5. CaffeineAddict

    I finally did it. Windows in the trash!

    If your PC isn't super duper Debian might as well be good choice. But it also depends on DE (Desktop Environment) which you install, some consume less resources some more.
  6. CaffeineAddict

    I finally did it. Windows in the trash!

    I'm using VSCode for Linux every day and I would not change it for any other code editor, it's unmatched.
  7. CaffeineAddict

    In need of help for configuring DNS server in Nobara

    I suggest the following DNS servers (both in Switzerland) https://github.com/DigitaleGesellschaft/DNS-Resolver https://www.quad9.net/support/faq/ Respectively: 185.95.218.42 9.9.9.9 In addition you might want to configure encrypted DNS with unbound software, both of those support DNS over TLS.
  8. CaffeineAddict

    New install, missing sound

    @new_vintage According to your output in your post #6 pulseaudio service is disabled. So you might want to enabled it with: systemctl --user enable pulseaudio #Make sure it was enabled with systemctl --user status pulseaudio # If not run and check again sudo systemctl enable pulseaudio And...
  9. CaffeineAddict

    I finally did it. Windows in the trash!

    lol no, you don't miss any games, 90% of Windows games run on Linux just fine. That was my main obstacle not to switch to Linux but things have changed, you can run Windows games in Lutris. (not all but most of them) some require adjusting settings, only few of them don't work at all.
  10. CaffeineAddict

    In need of help for configuring DNS server in Nobara

    @f33dm3bits Don't you have to bring connection\interface down prior changing settings?
  11. CaffeineAddict

    I finally did it. Windows in the trash!

    @Freepoorman Congrats on dumping Windows, make sure nostalgia for Windows doesn't make you change your mind. I had nostalgia for the first 2 weeks or so, I believe every Windows convert suffers from same problem after switch. But after some time you realize Linux is the best, you just start to...
  12. CaffeineAddict

    New install, missing sound

    @new_vintage When you log-in to desktop please run this command: systemctl --user restart pulseaudio Does that make the sound work?
  13. CaffeineAddict

    lvdisplay showing wrong size after increasing size of VM disk

    I was talking about root not boot partition. if it's root, and according to your code it is then the only way to do it is from live USB. Also note if your disk is encrypted them my steps won't work, the procedure is different for encrypted LVM's.
  14. CaffeineAddict

    Linux (I use MINT) Browsers and VPNs

    Browsers based on chromium are all from mainstream companies like google, yandex, microsoft etc. I'm not sure about brave. So I'd suggest firefox. And the best VPN is no VPN at all, Tor is safer.
  15. CaffeineAddict

    What next.

    Connecting to internet entirely from command line is fun thing to practice. You'll need to be proficient with ip tool and nmcli tool. And you also want to learn about NetworkManger, systemd-networkd and networking services. You might also want to learn where are networking configuration files...
  16. CaffeineAddict

    Careful using GitHub

    Another way how you could get infected from GitHub (or any other code sharing platform) is by downloading (or cloning) a repo that contains executable files or scripts etc. (I've seen several of such repos so far btw. nothing new) Those executables are not always easy to spot and even in you do...
  17. CaffeineAddict

    Unable to ssh OL 7.8 login

    Sorry I can't help with password authentication, I always do it with SSH keys for security reasons and the procedure is already known to me unlike other methods.
  18. CaffeineAddict

    Unable to ssh OL 7.8 login

    Btw Yes, you need a SSH key set up on your local system from which you wish to connect to server, do you have one set up? If not I'll give you procedure to make one.
  19. CaffeineAddict

    Unable to ssh OL 7.8 login

    OK, the re are several things you need to check on your server. AuthorizedKeysFile which is .ssh/authorized_keys file should contain public key of your local host from which you connect to server, if the file is empty or if it contains public key not form the host from which you connect to...
  20. CaffeineAddict

    Unable to ssh OL 7.8 login

    Then we can conclude firewall is not interfering with connection and connectivity works, so the error must be somewhere either in your /etc/sshd_config on the server or in ssh_config on your local host. It would be useful if you can post contents of that file from the server if possible? And...
Top