• 1 Post
  • 51 Comments
Joined 1 year ago
cake
Cake day: July 14th, 2023

help-circle

  • vettnerk@lemmy.mltoSelfhosted@lemmy.worldISP put me behind NAT
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    8 months ago

    I’ve had plenty of rants about Norwegian broadband (or lack thereof) over the past 25 years. It’s a bit of a long story, but the gist of it is that during the 90’s there was this one company (Telenor) which had practical monopoly on telecom (it was the private remnant of what used to be part of the government), and of course they didn’t want to develop broadband 8nfrastructure as the made shitloads of money by selling ISDN at the time. Broadband was available in the biggest cities only, and even there it was limited. And the punchline of that joke was that when I was on dialup I had to pay by the minute. During that time, hearing about not having to pay by the minute in the US sounded like paradise to me.

    But luckily competition happened, and Telenor realized they had to allow modernization or be left out of the market entirely. Small communities could sign up to have broadband “delivered”, and once enough people had signed up for an ISP to considet it profitable, digging would start. Today, twenty years later, I’m pretty satisfied with how it turned out. I live practically in the middle of nowhere, in a tiny industrial town sqeezed to fit into the terrain, where three of the cardinal directions are blocked by mountains and the fourth being a fjord. And I have 1gbit both up and down.


  • vettnerk@lemmy.mltoSelfhosted@lemmy.worldISP put me behind NAT
    link
    fedilink
    English
    arrow-up
    4
    ·
    edit-2
    8 months ago

    Ouch, I was not aware of that. Here in scandinavialand we have a few local or regional ones in each area, plus a few big ones that cover the entire country.

    Once the fiber is in the ground, “any” ISP can use them, regardless who buried it. I think it’s a remnant from 20ish years ago when the default was ADSL over copper, and the telecom cables were considered public infrastructure.


  • Install steam and test which of your games will run in mint. Some might require proton, but I’m sure you’ll find that you don’t need that many reboots.

    In my opinion, the full potential of linux is gained via the command line. The GUI is just an abstraction layer, and various distros have various approaches to this abstraction. Comman line familiarity is far from a necessary step, but it sure is a useful one.



  • vettnerk@lemmy.mltoLinux@lemmy.mlSell Me on Linux
    link
    fedilink
    arrow-up
    13
    ·
    edit-2
    8 months ago

    I have exactly zero experience in what work a law office does, but I would think it’s mostly paperwork and email? If so you can do that at no startup costs.

    Pick a distro (pop, mint, whatever), and install libreoffice or one of its many variants for offfice integration.

    A common misconception is that linux involves a lot of coding. Sure, it can if you want to - all the hooks for programatical access are there, for example if you want to build shell scripts for automation. But you don’t need to. It’s just an option many linux users, myself included, like to take advantage of.

    When it comes to convincing you, all I can say is this: It costs you nothing to try.





  • vettnerk@lemmy.mltoLinux@lemmy.ml*Permanently Deleted*
    link
    fedilink
    arrow-up
    25
    arrow-down
    1
    ·
    edit-2
    8 months ago

    Awesome! I’m one of the guys peer pressuring you in the other thread, and I’m glad to see it worked.

    It also just so happened that you went for the same distro that I use on my desktop.

    What’s going to be the primary use of this laptop other than having linux installed? Any projects or use cases in mind? I’m asking because I found out some time around the turn of the century hat the best way to learn linux is to use it for something one would otherwise do in Windows.



  • /var was originally for files of varying sizes, but today it’s more of a general purpose storage for the system, such as log files. It used to make sense to have this as its own partition as read and write operations were generally expected to be small but many, as opposed to few and large for the rest of the storage areas. With its own partition it’s easier to adjust the filesystem to accomodate the I/O. Today it’s mostly used for logs.

    /local used to be similar to /usr/local on some systems, but that’s not really the case anymore. It’s a directory we use at work for local stuff, as opposed to /global which is shared with the entire server cluster.

    You can have any directory as its own partition, just make sure the mountpont reflects it. /home is a very common example of this - using this as a mountpoint instead of just a normal directory named /home prevents regular uaers from filling up the root filesystem and borking normal operation.

    Swap is what your PC uses when it runs out of RAM. It can be a partition, or it can be individual (large) files. As an example, I have a rather huge and demanding factorio save which takes up more memory than I have on my laptop, so when I want to play it I have to add additional swap space. It’s similar to what windowa refers to as the pagefile. It’s slow compared to RAM, but it enables the PC to operate relatively normal despite being bogged down with loads of allocated memory.



  • vettnerk@lemmy.mltoLinux@lemmy.mlfirst time using linux
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    8 months ago

    If you already kinda like mint, I suggest moving out of a VM for a proper OS install.

    Linux in a VM is just that: A VM. It has the same use case as VMs in general. If you want the Linux experience i think you’re better off allowing linux to properly talk to your hardware.

    What to try depends entirely on what you normally do with tour PC, be it steam, deluge, or libreoffice. Use your mint installation for whatever you usually do with Windows.




  • I used variations of the same homecooked bash prompt ever since my FreeBSD days 25 years ago, up until Parrotsec made me realize that a prompt doesn’t have to be confined to one line.

    So now I use:

    username@host:/full/path #
    :

    …with a bunch of colors and special characters to make it more readable at a glance. That colon represents the input line.

    To conserve some space I only used last part of CWD before, but now that it’s multiline I can use the full path, making it easier when I need to copy-paste an scp-friendly path, as I’m usually working across a bunch of different usernames and hosts.