/srv/irclogs.ubuntu.com/2022/06/12/#kubuntu.txt

anl333the software needs to support 2-factor authentication with google authenticator. I needed to switch to gdm3 and xscreensaver to get things working. https://www.tecmint.com/enable-two-factor-authentication-in-ubuntu/01:37
anl3332-factor authentication works great with Ubuntu but it does not work with KUbuntu01:38
ElliriaHey there. Does anyone in here use the Night Color widget?02:37
=== palex is now known as engpa
ross__hello05:54
ross__who is onlien05:54
ross__who is online05:54
arraybolt3[m]me05:54
ross__great05:54
arraybolt3[m]I might not know the answer to your question, but I'll try!05:55
ross__This channel is a professional channel05:55
ross__Ok05:55
ross__I think my kde is very laggy05:55
ross__the animation is slow05:55
ross__and laggy05:55
arraybolt3[m]What's your computer's specs?05:56
ross__no matter I install it on vms or physical machines05:56
arraybolt3[m]Laggy might be expected on an ancient Intel Celeron, but if you've got an i5 and 8 GB of RAM, then something's wrong with your config most likely.05:56
arraybolt3[m]OK, good to know.05:56
ross__4Gram05:57
arraybolt3[m]Do YouTube videos play back smoothly on physical machines?05:57
ross__mybe the ram is too small05:57
arraybolt3[m]Nah, 4GB ought to be enough.05:57
ross__yes, video is play back smoothly05:58
arraybolt3[m]It might just be that you need to change the animation speed. I'm looking up how to do that.05:58
ross__ok05:58
ross__I am a new user for kde05:58
arraybolt3[m]OK, try opening System Settings.05:59
ross__and I am a programmer, but I think there are many many designs in kde should be improved06:00
arraybolt3[m]Bah, I'm having a hard time finding a post to tell me where the slider is, but I've got a KDE laptop next to me.06:00
ross__ok06:00
ross__let me seach it06:01
arraybolt3[m]Alright, so open System Settings, click "Workspace Behavior", ensure that "General Behavior" is selected, then you should see an Animation Speed slider.06:01
ross__OK06:01
ross__I got it06:02
arraybolt3[m](Quick tip - while 4 GB RAM shouldn't cause problems with KDE AFAIK, it might cause problems with doing intensive tasks on your system, so you might want to consider making a bigger swapfile. I can tell you how to do that if you'd like.)06:02
ross__Ok, thanks06:02
ross__you are so friendly06:03
arraybolt3[m]Yeah, sure. Just open a terminal with Ctrl+Alt+T, run "ls /swapfile", and tell me if you see any output.06:03
arraybolt3[m](If your tech support can't be friendly, then what's wrong with the world?!)06:03
ross__huh,yes06:04
arraybolt3[m]Nice, Then this command sequence should make you a nice 8 GB swapfile to supplement your RAM. Hold on just a sec...06:04
ross__Ok06:04
ross__ls /swapfile: out put just a file06:05
arraybolt3[m]OK, do this:06:05
arraybolt3[m]sudo rm /swapfile06:05
arraybolt3[m]sudo fallocate -l 8589934592 /swapfile06:05
arraybolt3[m](That's the end of the commands.)06:06
ross__ok06:06
arraybolt3[m](Yeah, ls /swapfile just says if there's already a swapfile on your system. If there wasn't one, there would be a bit of an ordeal adding it into the system, but since there is one, you can just delete the old one, make a new, big one, and be done!)06:06
ross__ok, I have finished this operation06:06
arraybolt3[m]Nice. Oh, did either command give any output?06:07
arraybolt3[m]They should have both been silent, and you should reboot the computer when you're done.06:07
ross__ok06:08
ross__thx06:08
arraybolt3[m]Hey, if you've not done the commands already, do "sudo swapoff /swapfile" before the other two commands.06:09
arraybolt3[m]If you've already done them, then just reboot and then come back so we can check to see if the swapfile is in use or if we need to tell the system to use it.06:10
ross__ok06:13
ross__everything is ok06:13
ross__after I reboot06:14
arraybolt3[m]OK, nice. So now can you pop open a terminal with Ctrl+Alt+T, and run "swapon" and tell me if anything happens?06:14
arraybolt3[m](If everything is right, it should output some text. If your system needs set up to use the swapfile, it should be silent.)06:14
ross__nothing happens06:15
ross__no output06:15
arraybolt3[m]OK. We will have to configure your system to use the swapfile. Run "sudo nano /etc/fstab".06:15
ross__I have opened it06:16
arraybolt3[m]Alright, move your cursor to the very end of the file, and type this line:06:16
arraybolt3[m] /swapfile none swap nofail 0 006:16
arraybolt3[m]Then press Ctrl+S to save, and Ctrl+X to exit.06:17
arraybolt3[m]Once that's done, reboot one more time and then do the "swapon" command again to see if it worked.06:17
ross__ok06:18
ross__I have reboot06:21
ross__and run "swap on"06:21
ross__nothing happeds06:21
arraybolt3[m]"swapon" is all one word in the command.06:22
arraybolt3[m]Your terminal will look like "Me@computername:~$ swapon" when you run the command.06:22
arraybolt3[m](Obviously, the bit at the beginning will be different, but you get my point.)06:22
ross__ok06:24
ross__yes06:24
ross__I just run swapon06:24
ross__not "swap on"06:24
arraybolt3[m]OK. And you don't see anything like "/swapfile file 8G 0B -2" on your screen when you do that?06:24
ross__no06:25
arraybolt3[m]Hmm. Can you run "sudo swapon /swapfile", then run "swapon" again and tell me if that does it?06:25
ross__swapon: /swapfile: insecure permissions 0644, 0600 suggested.06:26
ross__swapon: /swapfile: read swap header failed06:26
arraybolt3[m]Pppppt. My fault, I forgot a command. Two commands.06:26
arraybolt3[m]OK, do this:06:26
ross__the above is the output of "sudo swapon /swapfile"06:26
arraybolt3[m]sudo chmod 0600 /swapfile06:26
arraybolt3[m]sudo mkswap /swapfile06:27
ross__Ok06:27
ross__Setting up swapspace version 1, size = 8 GiB (8589930496 bytes)06:27
ross__no label, UUID=9301360c-1f46-47c4-9561-0d254912770606:27
ross__the output06:27
arraybolt3[m]Nice.06:27
arraybolt3[m]OK, try "sudo swapon /swapfile" again, then "swapon" again.06:27
ross__no output06:28
arraybolt3[m]Is that after both commands, or just after the first one?06:28
ross__NAME      TYPE SIZE USED PRIO06:28
ross__/swapfile file   8G   0B   -206:28
ross__output06:29
arraybolt3[m]Hey, there we go!06:29
ross__great06:29
arraybolt3[m]OK, reboot one more time, and that should do it. (Sorry to have slowed you down with forgetting the chmod and mkswap part...)06:29
ross__I have reboot06:32
arraybolt3[m]OK. Just do one more "swapon" to verify that the system is still recognizing the swapfile. If so, that's it!06:32
ross__NAME      TYPE SIZE USED PRIO06:33
ross__/swapfile file   8G   0B   -206:33
ross__Ok06:33
arraybolt3[m]Alright, your swapfile is working. That should help your system survive better during programming.06:33
arraybolt3[m]Is your desktop also not so laggy now?06:33
ross__Ok, thanks06:33
arraybolt3[m]👍06:33
ross__no, slightly better06:34
ross__Thanks06:34
arraybolt3[m]OK. You can keep fiddling with the animation speed to see if you can make it as good as possible. Glad to be able to help!06:35
ross__Ok06:35
=== winistotallyreal is now known as winisreallybored
BluesKajHi all11:58
IrcsomeBot<Oov> What is swapfile? (re @IrcsomeBot: <arraybolt3[m]> Alright, your swapfile is working. That should help your system survive better during programming.)15:11
IrcsomeBot<Oov> And what it dose?15:17
arraybolt3[m]Oov: If you're still here, a swapfile is a file on your hard drive that your system can use in place of RAM. If your RAM fills up, it can move stuff to the swapfile, allowing you to do tasks on your system that require more RAM than you actually have.19:31
IrcsomeBot<Noemi> Hi, everybody:)21:54

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!