Terminal > Windows Registry.

  • PoolloverNathan@programming.dev
    link
    fedilink
    English
    arrow-up
    14
    ·
    4 months ago

    LiNuX uSeR iNsTaLlInG A BrOwSeR haha

    yeah uh…

    • sudo apt install firefox
    • sudo xbps-install firefox
    • sudo pacman -Syu firefox
    • nix-env -iA firefox
      • dezmd@lemmy.world
        link
        fedilink
        English
        arrow-up
        7
        ·
        4 months ago

        Yeah, totally.

        Just imagine trying to do this with Windows Powershell, without a package manager like chocolatey to make it simple like linux…

        $workdir = "c:\installer\"
        
        If (Test-Path -Path $workdir -PathType Container)
        
        { Write-Host "$workdir already exists" -ForegroundColor Red}
        
        ELSE
        
        { New-Item -Path $workdir  -ItemType directory }
        
        $source = "https://download.mozilla.org/?product=firefox-latest&os=win64&lang=en-US"
        
        $destination = "$workdir\firefox.exe"
        
        if (Get-Command 'Invoke-Webrequest')
        
        {
        
             Invoke-WebRequest $source -OutFile $destination
        
        }
        
        else
        
        {
        
            $WebClient = New-Object System.Net.WebClient
        
            $webclient.DownloadFile($source, $destination)
        
        }
        
        Start-Process -FilePath "$workdir\firefox.exe" -ArgumentList "/S"
        
        Start-Sleep -s 35
        
        rm -Force $workdir/firefox*
        
    • overcast5348@lemmy.world
      link
      fedilink
      arrow-up
      3
      arrow-down
      2
      ·
      4 months ago

      It’s been 8+ years since I last used Ubuntu on my laptop. I faced massive issues with staying on the latest version of Firefox because apt had a much older version, and installing using the gui installer wouldn’t replace the apt version etc etc. Probably a PEBKAC issue…

      But, I do want to know- is this not an issue any more? Will apt install the latest (or almost latest) version of Firefox? Can I update it from the inbuilt update tool in Firefox?

      • ulterno@lemmy.kde.social
        link
        fedilink
        English
        arrow-up
        2
        ·
        4 months ago

        When you choose a distro, you generally choose to follow what the maintainers give you as the “latest”.
        Or you get snap/flatpak/AppImage.

        I, personally, would go with AppImage, probably because I once made some myself and liked them.

      • alvendam@lemmy.world
        link
        fedilink
        arrow-up
        3
        arrow-down
        3
        ·
        4 months ago

        Can I update it from the inbuilt update tool in Firefox?

        Universally regarded as a bad idea on Ubuntu based distros as far as my research goes.

        Probably a PEBKAC issue…

        Staying on the OTB repos in LTS distros and then complaining about software being slow to update is like staying on the OTB mirror, and then complaining that your download speeds suck.

        I’m a Linux noob through and trough, use Glorious Mint, but like… How to get a newer version of VLC, than distributed by upstream is probably the first thing I figured out how to do.

        • overcast5348@lemmy.world
          link
          fedilink
          arrow-up
          2
          ·
          4 months ago

          I don’t know why you are being an ass to me. I literally admitted that my lack of skill was the issue right at the beginning.

          And then people wonder why noobs don’t want to bother with Linux.