• 0 Posts
  • 21 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle


  • kolorafa@lemmy.worldtoLinux@lemmy.mlUsing ChatGPT with Linux
    link
    fedilink
    English
    arrow-up
    12
    ·
    3 months ago

    I didn’t left it, I needed provide that “part” to it to get the correct answer.

    Because like in the whole thread is mentioned over and over again, chatgpt doesn’t know the correct answer, it’s a mathematical model of “what looks ok” and “what should be the next word”, it looks ok to try to put --reset parameter to reset it, but because chatgpt can’t actually check documentation of podman stats if the param exists, it just generate it based on “common known text patterns”, and “common known text patterns” are written in a way suggesting that it is the truth.

    So once again - do your own research if following the results it could cause breaking both in tech and especially in life. And that is true for both chatgpt and random pages on internet.

    In this case I did exactly follow chatgpt answer without doing fact checking - I asked chatgpt, I copied the command and pasted it into terminal, because I know that if it didn’t work the worse that could happen it would fail and do nothing. But It’s bad for new people that will not know what the result could be if it’s wrong!

    @z00s Don’t take me wrong. I’m not telling not to use it, on the contrary.

    You should use any tool that helps you do your job/task. But you should try to understand how to use those tools wisely.

    Telling someone never to use ChatGPT is like telling someone to never use excavator. That is wrong, you should use excavator but you should know what is an excavator, and what harm it could do by for example accidentally destroy a building or even hurt someone (or youself) if not use wisely.


  • kolorafa@lemmy.worldtoLinux@lemmy.mlUsing ChatGPT with Linux
    link
    fedilink
    English
    arrow-up
    15
    arrow-down
    1
    ·
    edit-2
    3 months ago

    Example that confirms that “Chatgpt does not know truth. It does not know if the info it provides is true.” or more like “It will spell answer that match your inquiry that sound correct even if it’s totally made up.”

    https://chat.openai.com/share/206fd8e9-600c-43f8-95be-cb2888ccd259

    Summary:

    User
    in `podman stats` you see BLOCK IO as a summary of hard drive activity.
    how to reset the 
    
    ChatGPT
    To reset the block I/O statistics displayed by podman stats, you can use the podman stats --reset command.
    
    User
    Error: unknown flag: --reset
    
    ChatGPT
    Apologies for the confusion. It seems I provided incorrect information. The podman stats command does not have a built-in option to reset the statistics.
    

    So once again, don’t be afraid to use it, but do your own research especially if following LLM could result in something breaking both in tech or in life.


  • kolorafa@lemmy.worldtoLinux@lemmy.mlUsing ChatGPT with Linux
    link
    fedilink
    English
    arrow-up
    31
    ·
    3 months ago

    don’t run any commands that you don’t understand. Ask it to break down any commands it tells you to run if you don’t understand them.

    You need to pay extra attention to this, as ML models will spit out commands and parameters that doesn’t exists if there was not enough examples in training dataset for that action. Especially with explain as it could just spit out totally wrong but “sounding good” explanation for parameter etc as it not always will tell the magic keywords like “typically” that indicate that it doesn’t have confidence as it’s “based on other similar command/knowledge”.

    In your example it spit out:

     -m: Prune empty directory chains from the file-list.
     --prune-empty-dirs: Exclude empty directories that result from the inclusion/exclusion pattern.
    

    which is actually exactly the same parameter with 2 different explanations, you can confirm this with man rsync

     --prune-empty-dirs, -m   prune empty directory chains from file-list
    

    So the more edge case you have the bigger chance it will spill out bad results, but those new models are shockingly good especially for very common use cases.



  • cfdisk only changes the partition table, this table like a small paper that you store at the front (or back) of drive where you put information, it’s just a list of coordinates like from this point to this point is your home, from this to this is your yard, from this to this is your neighbor. Just because you changed the values on your paper doesn’t actually make your neighbor closer or further.

    System read this list to figure out where are the “borders” between different sections that you defined to load and use them logically for multiple file systems.




  • I would also vote for broken writer.

    I had multiple issues with DVD drives that could write but then it would not work on any other DVD readers or don’t work at all even on the writer drive. And other way around. They are just to damn delicate, especially those you have in your laptops.

    I would try to write the disk with slower speeds as it could improve it somehow like less vibrations or more laser burns.

    But in your case l would check if that person does have a TV or even DVD player that could read from USB, or buy them some smart set top box with jellyfin/Plex/Disney+/…







  • That’s why it got way slower to start… It’s not doing one thing fast like in the past but now it’s starting to be all-in-one app …

    It was such a nice app that did start almost instantly (under 1s to get screensho), now it takes few to load, few more to take screenshot not to mention the floating toolbox that gets in the way if you want to select what to screenshot…





  • @BaconIsAVeg@lemmy.world

    Linux running X11 has 2 clipboards:

    • oldschool ( from terminal-only era ) => copy by selecting text (mostly in terminals) and paste using middle mouse click
    • more modern new style ( based on graphical interfaces ) => copy by ctrl+c (or ctrl+shift+c in terminals and such) and paste ctrl+v (ctrl+shift+v in terminals …)

    Normally both those clipboards work independent as they are handled by 2 different processes, so you can for example copy one text using ctrl+c and copy another text by only selecting second text, then you can paste both, one with middle click, second with ctrl+v

    More and more distro have a clipboard managers that have a feature to “sync” both clipboards, but it’s a lot of time disabled because it’s more confusing people and sometimes annoying. Why it’s confusing and disabled by default? Imagine that you selected some text, then did a ctrl+c, you move to some word document, select text, remove it, and want to Paste it. Guess what, the selecting you did to remove text did copy the selection to clipboard overriding what you did have there from ctrl+c.

    Most if not all terminal emulators (konsole, gnome-terminal, xterm) support both clipboard styles, old-school select to copy, and new one but because the “ctrl+c” shortcut reserved to stop/interrupt applications they all decide to use ctrl+shift+c to do a copy. And yes, not only terminal emulators use ctrl+shift+c, I did have few encounters on some random apps, but most of the time, if ctrl+c is used for something else, ctrl+shift+c was available.