Is there a way to search the Solus software repo from outside solus, online somewhere?

Some software I want to search for:
Timeshift
Backintime
Qownnotes
riot or other matrix apps
brave browser
qbittorrent
2FA software such as oauth

    For others reference as of July 7th 2020:

    No Timeshift (although I may try this instead found in a reddit post:

    sudo eopkg install libgee libvte rsync dcron libjson-glib
    wget https://github.com/teejee2008/timeshift/releases/download/v17.11/timeshift-v17.11-amd64.run
    chmod +x timeshift-v17.11-amd64.run
    ./timeshift-v17.11-amd64.run 

    No Backintime
    Yes Qownnotes
    Yes (riot) riot or other matrix apps
    Yes brave browser
    Yes qbittorrent
    No 2FA software such as oauth

      brave browswer is a snap or flatpak. so is riot I think. don't think timeshift is going to happen if memory serves.

      as for the rest of the software I don't know, try:

      flatpak search xxx
      snap find xxx

      dig it.

        brent I don't have solus installed, but I did search and found what software is there and what's not. There is Oauth in flathub that I can use. Still surprised there isn't a 2FA app in the repos...
        No backintime or timeshift in flathub or the repos. But I think I found a workaround for timeshift. I know there is DejaDup but I hate it's interface and functionality, can't remember specifics of why I disliked it, but I just remember having issues with it in the past.

          Boggle247 I know there is DejaDup but I hate it's interface and functionality, can't remember specifics of why I disliked it, but I just remember having issues with it in the past.

          I've tried nearly every backup except restic. Many people swear by it. Vorta was cool looking. GRSync is dirt simple. I'm trying to learn the CLI bup app next--I don't back up enough...plenty of variety. You can't always get what you want....you know the restπŸ™‚

            brent

            For me, restic was really simple, and I use it on every machine before every update.

            Just create a repository folder (e.g., one that matches the name of the system being backed-up), and initialize it just once with:
            restic init repository-location

            I simplified the command invocation with a simple alias:
            alias backup='restic backup /home/$USER -r repository-location'

            To use this, of course, just replace the repository-location with the path to the folder you created for the purpose.

            Whenever I want to back up a system, I simply execute backup and provide the password I applied to the repository when I initialized it. Eventually I'll need to define a restore alias, too, but I haven't needed that yet.

              WetGeek
              repository creation, if I wanted to back up on an external, would look like restic init /dev/scx ?
              how does it save the filles? as a compressed package?
              thanks for this info, sorry to pester.

                Boggle247 Can't really help with the rest of it but for the PIA vpn you shouldn't need that pypia. Solus has Qomui in the repos which has a feature that allows you to import PIA Openvpn stuff. It's what I use.

                As a 2FA application you can use OTPClient which is in the repo.

                brent brave browswer is a snap or flatpak. so is riot I think

                Riot is in the Solus repositories πŸ™‚

                brent thanks for this info, sorry to pester.

                No worries. Sorry I was away for so long - making and canning some clam chowder.

                I mount my NAS shares on /mnt. Such as /mnt/Backups/Linux, /mnt/Backups/Windows, etc.

                So my backup location becomes /mnt/Backups/Linux/'hostname'

                Note that I had to use regular single quotes in the above example, but in an actual working path, you'll want to use the "back quotes" that are under the tilde on the keyboard. Thus, if the backup was run on a workstation called "solus-4-1-budgie", the backup location would expand to be /mnt/Backups/Linux/solus-4-1-budgie.

                The snapshot names look like: 1ab372620dae481543e9ef0e87a463949efa60945bdd7373b0f0024ccfbb939e, so I'm sure they're encrypted. The man page for restic probably has more details, although I admit I've never read it.

                EDIT: And the snapshots are typically around 300 bytes, so I'm sure they're compressed. Or maybe the "snapshots" are just links to another data location.

                  WetGeek I'm experimenting with fermenting lately, so I understand time constraints. One must sterilize everything to plan ahead. I'm more interested in the clam chowder. Red potatoes or russets? Pepper-heavy or season it later? One of my favorite soups for sure. Bacon or no?
                  **I think cooking and reading are the last two active hobbies I can afford these daysπŸ™‚

                  Anyways thanks for that. Many people distro-hop, I am currently back-up program hopping. Lastly: what file extension does is it save to? I used a progrm last month that saved my data to .gpg and right-click solus menu had no suggestions on which app to open it. All else was clear, and appreciate your time.

                  and to the ever-patient mods, I should have opened a back-up program post or survey (apologies)

                    brent One of my favorite soups for sure. Bacon or no?

                    No bacon this time. Maybe next time. Just baby clams, chopped bell peppers, minced garlic, butter, seasoned salt, and seasoned black pepper. EDIT: and thickened with flour, of course.

                    It would probably take you all of five minutes to create a temporary backup folder and run restic once. Then you can decide whether it's something you want to make more permanent, and put an alias like the one I showed you into your ./.bashrc file. That will tell you far more about how easy it is to use, and how fast it works.

                    If you decide it's not for you, all you'll need to do is delete the temporary folder.

                      WetGeek Been experimenting with corn starch as a thickener lately. Not quite the same as flour, and gastronomically/scientifically I don't know pros/cons or anything like that.
                      I want to give restic a dry run. Thanks for the info, it's appreciated.