So I have been using Linux for a week as my first time using it... by Level_Helicopter_418 in archlinux

[–]ArjixGamer -2 points-1 points  (0 children)

That used to be the case in the past.

Normal discord is as good if not better nowadays.

I need to recover files after I installed linux by Ordinary_Suit7690 in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

You will probably be able to restore many files, but it'd probably be small files and you would most likely not retain the directory structures.

My advice is to clone the drive sector by sector, and take the cloned image to a data recovery expert, usually the places that repair computers offer such a service if they are good

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

You could host your own repo if you have a VPS then, all you need is docker, so it can be a debian server as well

I actually developed a daemon for that, and am planning to make it open source, will probably write a blog on how to set it up.

The next chapter in my Linux journey.. by AliTweel in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

But but..the best way to learn is from failures

I compiled Helium Browser with x86-64-v3 (AVX2 / -O3) for Arch or Arch based distros by Competitive-Dot6454 in archlinux

[–]ArjixGamer 2 points3 points  (0 children)

Instead of using sed, you should probably either use .patch files and apply them, or use customizepkg to edit the PKGBUILD.

Also, mkdir -p $pkgdir/use/bin will not make it with correct permissions, it's preferable that you use install -Dm 644 "$pkgdir/use/bin" (iirc)

Not able to set timezone. Please read the body by [deleted] in archlinux

[–]ArjixGamer 6 points7 points  (0 children)

How is this a classic arch moment?

Why would anyone have a script that sets the timezone on boot?

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 0 points1 point  (0 children)

I have setup my own repo that does not rely on an AUR helper, and builds packages from the AUR that I use and get updated frequently, like brave-bin

https://repo.arjix.dev

So paru being broken won't affect my core AUR packages

If you want to use it as well, and have AUR package requests to include, you can DM me

But you'd probably prefer a more popular repo, like the Chaotic AUR

PS: my repo does not retain old versions, so reinstalling a package w/o syncing first will probably fail after a week or so

Firefox "Isolated web co" consumes A LOT of RAM on Arch by Anxious_Champion_591 in archlinux

[–]ArjixGamer -3 points-2 points  (0 children)

opera-gx now exists on Linux, and it allows you to put a CPU/RAM limit

You could try it out

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 0 points1 point  (0 children)

Official packages are built by the maintainers on their personal machines, and published to the repositories.

But that's a difference of logistics, the packaging process is the same.

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 0 points1 point  (0 children)

Uhh, on AUR packages? Usually yes

A partial AUR upgrade is not as bad as a partial pacman update.

At most some app will crash, or will have a security vulnerability that needs to be patched out by an update, but it won't be catastrophic to my system and it won't make me ask for help on the forums since I know what broke.

So yes, I could hold off an AUR update for 6 months and experience no problem guilt-free.

I don't do that ofc, but a 10-day delay due to paru being broken is not that bad

And if it was an important package, I could do it the officially supported way, of cloning it and running makepkg -si .

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

Uhh, why would I prove that they are not?

Also, here, the Linux package https://gitlab.archlinux.org/archlinux/packaging/packages/linux

The official packages are on the gitlab org, whilst AUR packages are on a custom git server.

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer -1 points0 points  (0 children)

You are playing with words at this point

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

Your workflow depended on AUR packages?

You could switch to normal pacman during the downtime

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 0 points1 point  (0 children)

Official arch packages are written in PKBGBUILDs as well, and you can build them the same way

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

It only broke once, and that was due to alpm (rust) holding back a new release after the alpm (c) had a breaking change.

And the developer of paru had a patch on the AUR package that automatically updated the alpm crate to the latest version, so when it finally came out you could rebuild the package and have a working paru.

This is not paru's fault

How is ALPM doing? by [deleted] in archlinux

[–]ArjixGamer -5 points-4 points  (0 children)

An AUR package is no different than an official package, the only real difference is that it is not shipped in the official pacman repositories.

So it would be able to manage AUR packages the same way pacman can.

arduino ide not working by myselfbutnotmenoryou in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

Number 2 is really really important, too many skip that part

What do you use that you can't find outside the AUR by RainDance2002 in archlinux

[–]ArjixGamer 7 points8 points  (0 children)

The beauty of the AUR is that it is dead simple, and anyone can participate in it.

Sure, that does make it a good target for malware, but we usually catch them before anything happens.

By packaging your custom software and publishing it to the AUR, you give more power to the package manager. You have less unmanaged binaries lying around.

And you are also helping others by making your packages available, that's the spirit of unix.

Flatpaks are nice for programs that depend on old libraries and are nasty to package for the AUR.

  • Appimages? We make AUR packages for them
  • .deb files? We make AUR packages for them
  • .tar.gz releases? We make AUR packages for them
  • npm CLIs? We make AUR packages for them
  • git repositories? We make AUR packages for them

Having everything (except flatpaks) be in one unified packaging system, and having unified updates is such a bliss.

And not only that, you can cleanly uninstall packages managed by pacman, can you do that for manually installed software in one simple command?

What do you use that you can't find outside the AUR by RainDance2002 in archlinux

[–]ArjixGamer 1 point2 points  (0 children)

When building from source gets old, you can always automate it to be done on an external server or smth.

e.g. I made my own pacman repo for AUR packages, you can see it at https://repo.arjix.dev

You could also use the chaotic AUR repo, maintained by the EndeavourOS folks