linux

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

Rand0mA, in Is an unknown supervisor password for ThinkPad bios an issue if I've already installed linux?

IMO, Honestly, at this point you probably arent going to miss much.

Youve presumably booted from an external device and installed an OS. I assume the time amd date are right.

Only question really is are you using efi or mbr boot method. If efi, you are probably fine and future proofed unless you want secure boot (windows) you may face an issue then. Thats not to say you will, just you might.

Chais, in Is an unknown supervisor password for ThinkPad bios an issue if I've already installed linux?
@Chais@sh.itjust.works avatar

You can either try to contact the seller and ask for the password or just erase the UEFI settings by shorting some jumper or something. There should be instructions how to do that for your specific model.

anon_8675309, in Imagine Linux on an Arm SoC that benchmark better than Apple's M2 Max!

I see a bunch of lawsuits in the future. Because that’s what big companies do.

ProgrammingSocks,

I was gonna say the same thing. I sense claims of stolen IP soon

onlinepersona,

They don’t compete, they sue or buy out.

redw0rm, in Linux holds more than 8% market share in India, and it's on the upward trend
@redw0rm@kerala.party avatar

Glad that there are govt. level systems who make use of Linux (mostly ubuntu ) systems here. For eg. , in kerala, all govt schools and colleges use linux for computer labs and academic activities, i guess the local body administration too use ubuntu.

Only wish we could convince those private sector schools of the money they’ll save converting those slow windows systems to linux.

SnipingNinja,

Problem with private schools is most likely the training investment required. They can’t as easily replace IT team and/or CS teachers with those who can handle Linux

vsh,
@vsh@lemm.ee avatar

Using Linux for edu and using Linux for business is two different things

possiblylinux127,

Not necessarily, the management tools and techniques are similar

uis, (edited )
@uis@lemmy.world avatar

OS for buiseness use often is cheap labour OS, which means OS that schools use.

joel_feila, in Firealpaca (Proprietary Painting Software) Releases Linux Version
@joel_feila@lemmy.world avatar

Now how about medibang for linux

happyhippo, in Imagine Linux on an Arm SoC that benchmark better than Apple's M2 Max!

I don’t wanna repeat myself, but: 7840u for the next few years, then I hope RISC V will be mature enough to kick some ass (and that framework releases a board for it).

That’s all I dream of.

semperverus,
@semperverus@lemmy.world avatar

Check out the milkV Pioneer.

Rustmilian, (edited ) in Firefox Development Is Moving From Mercurial To Git
@Rustmilian@lemmy.world avatar

deleted_by_author

  • Loading...
  • Lord_ToRA,
    @Lord_ToRA@lemmy.world avatar

    I agree that PRs are problematic, but that doesn’t make GitHub “trash”.

    Also, that dude is so obnoxious and really seems to like to make broad generalizations of his opinion like it’s fact.

    Scorpion3869, (edited )

    and really seems to like to make broad generalizations of his opinion like it’s fact.

    None of what Brodie said is baseless, even if some are more opinion than fact. He sight’s sources for a reason.

    Lord_ToRA,
    @Lord_ToRA@lemmy.world avatar

    He sight’s sources for a reason.

    I’d hope so. It wouldn’t be good if they were blind.

    Anyway, I didn’t question the accuracy of what he said, just that his manner of delivery is obnoxious and portrays an attitude of self-importance. It feels like he’s yelling at the viewer with hostility.

    Spectacle8011,
    @Spectacle8011@lemmy.comfysnug.space avatar

    Aussies tend to be quite direct. It’s basically our natural state. I get how it can be perceived as hostile, but I don’t actually think Brodie is very abrasive. He seems like a pretty relaxed guy.

    Scorpion3869,

    He’s literally talking to the viewer the same way the vast majority of YouTubers speak, he’s just Australian.

    Lord_ToRA, (edited )
    @Lord_ToRA@lemmy.world avatar

    the same way the vast majority of YouTubers speak

    “Everyone else is doing it” is not a free pass. Absolutely none of the creators I watch speak like that, and I can list quite a lot. It’s obnoxious.

    Scorpion3869, (edited )
    1. The video is 2y old.
    2. He’s Australian.

    Cut the man some slack.

    Lord_ToRA,
    @Lord_ToRA@lemmy.world avatar

    Why do either of those matter towards being obnoxious?

    Are all Australians obligated to be like that? Two years ago people were supposed to make videos acting obnoxious?

    Scorpion3869,

    Right now, I’d say you’re the one choosing to be obnoxious.

    Lord_ToRA,
    @Lord_ToRA@lemmy.world avatar

    Because I’m answering you with logic?

    Scorpion3869, (edited )

    Because you’re being obnoxious.
    Caring this much about how some YouTuber speaks is literally obnoxious and portrays an attitude of self-importance.

    Lord_ToRA,
    @Lord_ToRA@lemmy.world avatar

    You’ve clearly just devolved into ad hominem attacks. Does your ego really hang on whether or not your YouTuber friend is perceived the way you want?

    I just pointed out that the dude is obnoxious and you’re over there trying to defend him with complete nonsense.

    Move on, buddy.

    Scorpion3869, (edited )

    Move on, buddy.

    🫴

    jaybone,

    I’m just curious, why are PRs worse on GitHub compared to other git hosting services?

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    Instead of using valid commit messages they just slap on “” which isn’t valid anywhere other than the GitHub web UI.

    IAm_A_Complete_Idiot,

    Also, GitHub PRs atleast to me feel like they encourage reviewing changes by the total diff of the entire PR, and not each commit. I don’t want a slog of commits that don’t add any value - it just makes doing things like reverts more annoying. Stuff like Gerrit and phabricator enforce reviews by making you review individual commits / changes / whatever you want to call them and not branch diffs.

    bamboo,

    GitHub has an option when merging a PR to “squash and merge”. This option squashes all of the commits on the PR branch into a single commit and cherry-picks it on top of the base branch. We use this by default in our open source projects at work. Most people are not gonna go through the effort of making a well defined patch series the way it would be required for a Linux kernel contribution. Most changes aren’t that big though and so it doesn’t really matter. Send as many commits as you want in the PR, I’ll just review the diff as a whole and squash it when I’m done. Workflows should adapt to user preference, not the other way, and this is a good example of that.

    IAm_A_Complete_Idiot,

    How much of that is what GitHub encourages and how much of that is what Users prefer? Plenty of users seem to enjoy phabricator / Gerrit for code review in practice precisely because of their workflows.

    bamboo,

    Well squash and merge isn’t default or pushed in any way. It’s an option, and we chose to enable it ourselves because that’s what works best for us. It’s what works well for many other projects too, which is why many choose to enable it instead of the default merge commit.

    IAm_A_Complete_Idiot, (edited )

    Yeah, but phabricator and Gerrit are entirely separate workflows from GitHub, and a lot of people prefer that workflow because it leads to encouraging better histories and reviews. It helps you in getting rid of the “fixed typos” type of commits, while still letting you make larger PRs.

    GitHub obviously does let you keep a clean git history, but the code review workflow in GH just doesn’t encourage reviewing commits.

    bamboo,

    I think the idea here is that reviewing individual commits is irrelevant if the plan is just to squash it all down. Each PR corresponds to a single change on the main branch in the end, the fact there was a main commit followed by a half size “fixed typos” and “fixed bug” commits doesn’t actually matter since it will be blown away in the end. The process results in the same clean history with good individual commits on the main branch, just as if the user squashes those commits locally before pushing it up to the code review platform.

    IAm_A_Complete_Idiot, (edited )

    Right, but squashed commits don’t scale for large PRs. You could argue that large PRs should be avoided, but sometimes they make sense. And in the case where you do have a large PR, a commit by commit review makes a lot of sense to keep your history clean.

    Large features that are relatively isolated from the rest of the codebase make perfect sense to do in a different branch before merging it in - you don’t merge in half broken code. Squashing a large feature into one commit gets rid of any useful history that branch may have had.

    bamboo,

    I agree, and GitHub allows choosing how to merge each PR individually if you need to do something different for a specific PR. Large PRs like that are at most 1% of our total PRs, and we review those more per-commit and use a merge commit instead of a squash. By default we optimize for the other 99%.

    RegalPotoo,
    @RegalPotoo@lemmy.world avatar

    … which is part of why they aren’t using GitHubs pull request feature to land changes?

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    “at this time”

    Meaning they’re planning/considering to in the future.

    kogasa,
    @kogasa@programming.dev avatar

    That is not what that means

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    It’s exactly what it means.

    “Although we’ll be hosting the repository on GitHub, our contribution workflow will remain unchanged and we will not be accepting Pull Requests at this time

    We can all read it right there plan as day.
    If they weren’t planning to/considering it, then why specify “at this time”?
    I’m only a native English speaker, so guess I could be interpreting it wrong.
    Do tell oh wise one, what alternative meaning could it possibly have?

    Edit : statement from glob himself. 1000000728

    kogasa, (edited )
    @kogasa@programming.dev avatar

    I’m only a native English speaker, so guess I could be interpreting it wrong.

    You should try being a native English reader.

    What it means is “they will not be accepting pull requests at this time.” Whether or not they are open to changing this in the future is not specified. They have not specifically stated that this is off the table, nor have they stated this is their intent.

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    So they are considering it.
    Thanks for confirming my point.
    If they weren’t, they wouldn’t have specified, they’d just say “we will not be accepting Pull Requests”.

    You should try being a native English reader.

    Ironic

    kogasa,
    @kogasa@programming.dev avatar

    No. They’re just not publicly saying it’s off the table. Whether they’re entertaining it internally is a totally different question.

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    What’s funny is I have direct contact with some of the internal Firefox devs. ◉⁠‿⁠◉
    I’ll deadass just ask.

    kogasa,
    @kogasa@programming.dev avatar

    Okay? Is this supposed to change something?

    Rustmilian,
    @Rustmilian@lemmy.world avatar

    You’ll see.

    kogasa,
    @kogasa@programming.dev avatar

    How does the opinion of your supposed internal contact at mozilla affect the basic English interpretation of the public announcement?

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    How does the opinion of your supposed internal contact at mozilla affect the basic English interpretation of the public announcement?

    We’d see who’s interpretation is right? Duh.

    Padenot (contributer with direct ties to Mozilla internal) agrees with me on GitHub PR being terrible. 🤣
    Waiting for other responses. 10000007231000000724

    Note : most of them are sleeping rn, so it’s going to take a bit of time.

    I asked Glob (the literal author of the announcement) directly as well. Waiting for him to wake up and see it, he was up at 3am last night, lol.

    kogasa, (edited )
    @kogasa@programming.dev avatar

    You’re quite the lunatic. I’m obviously not defending GitHub PRs, or saying Mozilla should or should not use them. I said “we are not open to PRs at this time” is not the same as “we will be open to PRs in the future.” The truth of that statement has absolutely nothing to do with whether or not Mozilla is, in fact, open to using PRs in the future. But there’s no point in telling you that, because you’re clearly unhinged. Have a good life.

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    First off :

    “we will be open to PRs in the future.”

    Is not what I said they meant to being with. I said planning/considering, which is wildly different.

    Second :
    Who’s unhinged? 10000007281000000729Looks like I was right all along, they were indeed considering it but have since decided against it because of the same concerns I had mentioned previously. Is this definitive enough for you?

    RegalPotoo,
    @RegalPotoo@lemmy.world avatar

    And I’m sure you’ve got a long history of submitting patches to Firefox given your strong opinions on the process Mozilla uses to manage this?

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    Nobody here needs “a long history of submitting patches to Firefox” to have an opinion on the tools used to manage the project. I assume that most here sharing their opinion don’t and yet you need not scroll far. You merely need some knowledge and experience with the tools, be it in personal, corporate, FOSS, etc. projects. Besides I don’t spend my free time helping FOSS projects just to use it to be like “my opinion better” that’s literally just the “appeal to authority fallacy”. But if you must know, I have helped here and there throughout the years under various different aliases/accounts. (Why “various aliases”? because I enjoy helping not some meaningless credit, it’s just how I am.)

    RegalPotoo,
    @RegalPotoo@lemmy.world avatar

    So what you are saying is that as someone who has never worked on the Firefox codebase, you still somehow know more about managing contributions to one of the largest FOSS projects in the world that has been running pretty successfully for the last 25 years?

    Idk, maybe try a bit of humility - like if it looks like they are making a weird decision, maybe it’s not because they are dumb and you are very smart, maybe it’s because they know stuff that you don’t?

    Rustmilian, (edited )
    @Rustmilian@lemmy.world avatar

    First off, not what I said.
    Second off, I never called them dumb. I actually happen to have a good relationship with them, so I take offense to what you’re implying. I mearly stated that I don’t like GitHub and gave some legitimate reasons. Which btw : 100000072310000007241000000728Maybe the one who should learn humility is you.

    velox_vulnus, in GIMP 2.10.36 Released

    deleted_by_author

  • Loading...
  • squeakycat,

    They’ve been completely dropping the ball for years. I used to donate regularly but have completely given up on this project. It’s a farce at this point.

    Thankfully I only have simple needs so Krita suffices and I don’t have to deal with the never-improving UX nightmare and never-releasing changes.

    Yeah, I’m salty. It’s just that GIMP was a shining star of FOSS and it’s just been slowly rotting from inaction.

    wiki_me,

    They’ve been completely dropping the ball for years. I used to donate regularly but have completely given up on this project. It’s a farce at this point.

    Liberapay shows the number of donors has almost doubled in the last few months (look at “view income history”), so i hope it is an indication that they made good changes to the project management and the future will be better.

    RickyRigatoni,
    @RickyRigatoni@lemmy.ml avatar

    Is it because they’re improving, or is it because Adobe keeps pissing people off and donating to GIMP is cheaper than a Photoshop sub?

    I don’t actually have any opinion on gimp one way or another, it does what I need it to do.

    squeakycat,

    Ha, reminds me of www.youtube.com/watch?v=dJBEAZFP0aA

    Glad it suits your needs!

    squeakycat,

    That’s good to hear, and I really would love for things to get sorted out. Gimp 3.x has many improvements for sure but there’s a long way to go and actually releasing these improvements is necessary…

    If gimp can become another blender that would be incredible.

    directive0,
    @directive0@lemmy.world avatar

    GIMP really needs its Blender moment.

    tetris11,
    @tetris11@lemmy.ml avatar

    Are they still using GTK2/Python 2?

    velox_vulnus, (edited )

    deleted_by_author

  • Loading...
  • Dirk,
    @Dirk@lemmy.ml avatar

    I just hope they don’t use CSDs and let the window manager fully manage the windows.

    kmacmartin,

    In X11 it’s server side, and in gnome wayland it’s of course client side, but they look exactly the same as the SSD ones. I doubt they’ll change that between the current beta and the 3.x release.

    KISSmyOS,

    That’ll be an option you can toggle.

    Audacity9961,

    Gimp 3 uses python 3 as well.

    KISSmyOS, (edited )

    I’ve switched to Gimp 2.99 with GTK3 from Debian Experimental.
    Seems stable and bug-free (if a little sluggish) so far.

    Edit: Just checked their site. Quote from the release notes of the first 2.99.x release:

    The vast majority of the work has already been done. What remains now is the final stroll.

    That was 3 years ago.

    Spectacle8011,
    @Spectacle8011@lemmy.comfysnug.space avatar

    The reasons are made clear on their roadmap.

    The GTK3 port is done, and now they need to finalize the new extension API and improve their color space support (particularly CMYK). It would be nice if Wayland had a color management protocol extension standardized by then, but I don’t think it’s a blocker.

    nitrogenez, in Linux holds more than 8% market share in India, and it's on the upward trend
    @nitrogenez@lemmy.world avatar

    netbsd is just chilling somewhere in the corner, left to rot alone :(

    OsrsNeedsF2P, (edited )

    NetBSD’s license helps it get adoption, but much fewer public forks/natural contributors, so it’s gonna be pretty much impossible for it to catch up

    possiblylinux127,

    I think it actually hurts adoption as is allows companies to steal code

    nobloat, (edited ) in Best distro for my Laptop?

    Software information says you’re already using Fedora ? Do you mean you want to switch distros ? If so, it’ll be useful to say what you’re looking for and why Fedora didn’t fulfill those needs so we can recommend alternatives.

    CalicoJack, in Best distro for my Laptop?

    You should be fine on basically anything. I have a similar-spec machine running Arch with KDE and it’s rock solid.

    PrivateNoob, in Best distro for my Laptop?

    Dell laptops are usually pretty good in Linux support afaik so go with whatever you like.

    taanegl, (edited ) in So... how to fix this?

    Firstly, check the logs directly to get a more concise error that we can analyse. journalctl is the standard systemd logging client you can use in the terminal. By specifying the unit (units can be socket files, timers, services) you can get logs specifically for said unit.

    
    <span style="color:#323232;">journalctl -u udisks2.service
    </span>
    

    You can also specify binary, if said binary logs to journalctl, like so (if the binary path exists):

    
    <span style="color:#323232;">journalctl /usr/lib/udisks2/udisksd
    </span>
    

    You can also check kernel messages (dmesg) by using the -k flag, like so:

    
    <span style="color:#323232;">journalctl -k
    </span>
    

    You can utelize flags such as -e to scroll to the end of a journal, -f to follow a journal in realtime and utelize the -p flag to set priorities like error, crit, warning (-o error) and others to filter away common journal entries so you don’t have to scroll through every line in the log.

    Secondly, and this is gonna sound weird, but reboot into windows twice. The first time you boot windows run diskchk on the partition(s) in terminal/powershell/command as administrator. If it tells you it needs to do an offline scan, reboot and you’ll see an offline diskchk screen on boot before login. If not, reboot again into windows anyways, and then reboot into Linux.

    The reason is that NTFS has a weird failsafe flag that NTFS on Linux considers a no-go, and it’s usually set if the system crashes more than twice, but not always. If Linux NTFS drivers see the flag, it won’t mount as a precaution. The only way to reset the flag is to reboot in windows twice. Not once, not three times, but twice.

    This might be outdated info, but that was the fact some years ago. There might be a way to fix it with modern day Linux, but I don’t know, especially when I have no direct and informative errors to go by.

    journalctl is your friend :)

    RedBauble, (edited ) in Linux on a 2in1 for Uni

    I bought a used Thinkpad Yoga 370, with a 7th gen i5, 8gb ram (single slot sodimm, which is a real pity) which I later upgraded to 16gb. Also the pen slots right into the frame of the laptop for storage and recharging, so you don’t need to carry it around separately, though it may be a bit small for some people. I personally find myself comfortable with it.

    I went right to arch (btw), as I was on both on my old laptop and my desktop, the archwiki has a page dedicated to this laptop, listing which features work and which don’t. If you mess around with the fingerprint sensor and python-validity package you can get it to work, but I don’t use it anyway. The rest works out of the box, though I have never tried the modem (my version lacks antennas and the module) and the express card reader.

    I use xournal++ to take notes in uni. I tend to make a huge journal for each course (easily 150+ pages at the end of the semester), so make sure to disable autosaves as sometimes they hang up the whole program while trying to save.

    At first I was using gnome on wayland, which has pretty good palm rejection, autorotation and sensor/webcam remapping and works great out of the box in general. Later moved to i3 on xorg as somehow a tiling window manager made more sense to me on a touchscreen device (android is kind of a tiling window manager if you think about it). Currently on i3, using touchegg to use custom gestures for the WM and specific programs. I am currently wondering whether to move to hyprland as I noticed slightly worse palm rejection on i3/xorg when compared to gnome/wayland (still very usable though), but I still want a tiling window manager and customizable touch gestures, which Hyprland should have a plugin for.

    I general I find this laptop great, the x1 yoga should be good too, but I have never tried it on linux.

    DidacticDumbass, in Fedora Linux 39 Released As A Wonderful Upgrade For Leading Workstations &amp; Servers

    I am thinking of switching from Linux Mint to Fedora. I have always liked Fedora, but have been bitten by some BS like NVIDIA drivers not working and some programs only available as a .deb file (I know about alien… or do I?)

    I love GNOME DE, has that modern “I work on a spaceship” feel.

    I mostly do music production and some gaming, so pipewire seems intriguing.

    Here is the real question: Should I got Silverblue? I just learned about distrobox, so maybe that is my solution for programs I cannot get through flatpak?

    skilltheamps,

    You can install silverblue, and then rebase to ublue ( universal-blue.org ). Specifically to the “silverblue-nvidia” variant, and you should get a nice silverblue experience without any of the nvidia struggles, as people at the ublue project take care of that stuff for you.

    And yes, distrobox is the goto solution to run stuff that is basically ubuntu-only, or by extension bound to any distro variant / version and not flatpak. This includes graphical applications. Distrobox works great, I do all my work in it.

    DidacticDumbass,

    Nice! Looks like I have a fun night ahead of me!

    Thank you for showing me uBlue! I want to avoid os-tree if I can, since that seems to defeat the purpose.

    alt,

    I want to avoid os-tree if I can, since that seems to defeat the purpose.

    How so?

    DidacticDumbass,

    Oh, I totally misunderstood the OS. I was under the impression that using os-tree should be totally avoided for anything other than necessary system programs, and all other software should be installed with flatpaks or containers.

    I now understand that using os-tree for some programs is inevitable, and I should embrace it, though still catiously to maintain as clean of an OS as possible for maximum longevity.

    alt,

    I was under the impression that using os-tree should be totally avoided for anything other than necessary system programs

    Interaction with ostree directly shouldn’t occur that often; with sudo ostree admin pin *number* (and its -u option) probably being the commands your average Joe should interact with. You probably meant rpm-ostree.

    and all other software should be installed with flatpaks or containers.

    It’s indeed true that initially Fedora intended flatpaks should be preferred. If the software isn’t available there, then Toolbx(/Distrobox) is used to access it through a container. And if all else fails, then it’s layered through the rpm-ostree command.

    I now understand that using os-tree for some programs is inevitable, and I should embrace it, though still catiously to maintain as clean of an OS as possible for maximum longevity.

    You’re getting the drill! Though, I wonder why you weren’t able to rebase to uBlue and had to resort to installing the Nvidia drivers through RPM Fusion instead. It’s fine as long as it works, but I imagine that some issues might arise eventually. So consider sharing the steps you took so that the community might help out; perhaps even over at uBlue Discord. You could also just share it here if you will.

    DidacticDumbass,

    Honestly, I just followed the steps here: rpmfusion.org/Howto/NVIDIA#OSTree_.28Silverblue.2…

    I was diligent about following the configuration guide first: rpmfusion.org/Configuration

    I think the key is restarting at every step it asks you to, and maybe after anything that seems major or is a prerequisite for another set of program installs. I mean, I got a black screen the first time, but after a hard reset, it just worked.

    No doubt UBlue is probably a lot easier. I did not realize I could have just downloaded the ISO instead of trying to rebase, but I like what I am running.

    Anyways, doing it the hard way is helping me learn the intricacies of an immutable system, so I am having fun.

    alt, (edited )

    Ah, I got it now thanks for the explanation!

    Indeed, in your case acquiring uBlue through its ISO was probably the best option; but I’m glad to hear that it worked out in the end!

    Anyways, doing it the hard way is helping me learn the intricacies of an immutable system, so I am having fun.

    Well said!

    Just in case; consider the following:

    • Pin your current working deployment with the aforementioned sudo ostree admin pin 0 command. After which it remains accessible regardless unless you unpin it later on. This should allow you a working deployment if all else fails and thus a safe haven to rely on.
    DidacticDumbass,

    Oh nice! I will do that. I see this as save scumming for real life!

    Speaking of, save scumming is a habit I need to rid myself of. I need to allow myself to fail in Baldur’s Gate and other games.

    alt,

    I see this as save scumming for real life!

    Hehe, great analogy :P !

    DidacticDumbass,

    I saw that the image was failing to build, so I took a chance and followed the RPMFUSION guide and installed it successfully. I am learning to use toolbox for CLI stuff, but now I am going to learn about Distrobox!!

  • All
  • Subscribed
  • Moderated
  • Favorites
  • linux@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 18878464 bytes) in /var/www/kbin/kbin/vendor/symfony/http-kernel/Profiler/FileProfilerStorage.php on line 171

    Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 10502144 bytes) in /var/www/kbin/kbin/vendor/symfony/error-handler/Resources/views/logs.html.php on line 38