Efwis

joined 1 year ago
MODERATOR OF
[–] Efwis@lemmy.zip 2 points 1 month ago

This is nice thanks for sharing

[–] Efwis@lemmy.zip 1 points 3 months ago

this is one of those questions better asked in debian forums if they still haven't released it

[–] Efwis@lemmy.zip 2 points 3 months ago (1 children)

for a complete unisntall you should just be able to run sudo pacman -Rns <package_name> or yay -Rns <package_name> depending on how it is installed.

since you're doing a complete unsinstall and reinstall, you should be able to just run sudo pacman -Syu <package_name> or yay -Syu <package_name> and it will completely reinstall. If you are worried you have a corrupted download of the file, clear your package cache completely and run those commands, it should download a clean program install file and reinstall.

I'm not familiar with Mangohud and Goverlay, so unfortunately can not help our further, but maybe one of our other community members can.

[–] Efwis@lemmy.zip 1 points 3 months ago (2 children)

Debian will have the new KDE when they do their massive update, otherwise there is the testing and unstable branch to look and see if they have it there.

[–] Efwis@lemmy.zip 4 points 4 months ago

it's a way to keep info going into community so it doesn;'t get stagnant and others can find it.

I would change the community name but the only way to do that is by deleting the whole community and starting over again. Also people do make scripts for new packages, This way they can know what changes they might need for their scripts if use any.

This also allows people to know about upcoming changes which will allow more help in troubleshooting issues that happen.

[–] Efwis@lemmy.zip 2 points 4 months ago (1 children)

feel free to come back and ask for more help if that doesn't fix it

[–] Efwis@lemmy.zip 2 points 4 months ago* (last edited 4 months ago) (4 children)

have you tried the 555 beta driver?

Since this seems to affect your montior, I'm kind of leaning towards this being more of an nvidia issue. I would recommend trying the 555 beta driver to see if that fixes it at all. Worse case scenario you might have to wait for KDE 6.1 to hit the repos to see if that helps too.

I don't use nvidia myself so I can't readily check it nor am i aware of how to install the beta driver, i think it's in the AUR.

 

Today KDE released 6.1. Now we wait for the distros to put it in their repos.

 

KDE 6.1 is released today, now we begin the patient wait for the distros to update their mirrors with the latest version.

[–] Efwis@lemmy.zip 1 points 4 months ago (6 children)

what driver are you using for your GPU?

have you tried a different nvidia driver? were the results the same?

[–] Efwis@lemmy.zip 3 points 4 months ago

Trees need loving too

[–] Efwis@lemmy.zip 1 points 5 months ago
[–] Efwis@lemmy.zip 6 points 5 months ago (2 children)

You do get notified. I got banned from worldnews@hexbear because I was too controversial in m comment. Basically they didn’t like the truth that I laid out with evidence and links.

 
 

Alright everyone, let’s get this party started. The title asks the question pretty well. What is the main use of your Linux install? Is it gaming, programming, just to dump windows etc…

Let’s have some fun everyone.

 

Hey everyone, just wanted to touch base with y’all. I’m really a little worried about our community.

As of this writing we have 295 members, but we only have 11 posts, including this one. We really need to get some quality posting going on here.

So this is what I was thinking, let’s start a mega thread of conversations around Linux in general. I would like to see what we can get going here. Also please talk to your friends that are on here and invite them to the group.

I know a lot of us, myself included, tend to just lurk until something pops up for us to interact with. I’m asking everyone here to help interact with our community. We aren’t just a help desk here, we can also have fun conversations.

 

Hi all, I really appreciate the number of member we have here at linuxscripts, and we have had a few posts besides my own on here.

What I would really like is for some of you to post things if you have them, and of course let others know about our existence.

You don’t have to post content to o be a member here, but please help contribute in any manner you can. I am opening the community up to more content today allowing for memes and crossposts of news surrounding Linux. If you cross post please denote that in your post so others know. I do ask that you don’t cross post unsolved help posts unless it is your own. However, if you get a solution to your problem and it’s not on here please let me know so it can be locked.

Thanks everyone.

 

This is a database script i made to trigger when database events trigger a database lockup.

# Make sure to change your database info and what instance of DB you are using (i.e. sqlite3, mysql, postgres etc...)
# This script will rotate for a total of 5 logs so you can compare previous errors with current one without taking unnecessary space

# There's no strict requirement to place it in the root directory of the server, but you have some options for where to put it:

# Root Directory: Placing the script in the root directory could work, but it's generally not recommended to clutter the root directory
# with scripts. It's better to create a specific directory for your application and put the script there.

# Custom Directory: Create a specific directory for your application, and place the script there. 
# For example, you could create a directory called "my_app" or "database_error_logger" and place the script in that directory.

# Scripts Directory: Some servers have a designated directory for executable scripts. 
# You might check if your server has a "scripts" directory where you can place your script.

# Regardless of the location, it's essential to consider file permissions. 
# Ensure that the script has the necessary permissions to execute. You may need to use the chmod command to set the appropriate 
# permissions, depending on your server's configuration.

# Lastly, consider setting up a virtual environment for your Python script to isolate dependencies and avoid conflicts with other 
# applications on the server. This can help ensure that the required Python libraries are installed locally for your script
# without interfering with system-wide packages.    

# This script was created by Edward Freeman and is covered under GPL V3. You can modify this script as you need
# However, you must retain this GPL V3 standard, and leave credit where credit is due to the original author.

import logging
from logging.handlers import RotatingFileHandler
import sqlite3 #Make sure you change this to the correct Database provider (sqlite3, mysql, postgres etc..)
import sys

# Configure logging with rotating file handler
log_file = 'database_errors.log'
log_handler = RotatingFileHandler(log_file, maxBytes=1024 * 1024, backupCount=5)
log_formatter = logging.Formatter('%(asctime)s - %(levelname)s: %(message)s')
log_handler.setFormatter(log_formatter)
logger = logging.getLogger('DatabaseErrorLogger')
logger.setLevel(logging.ERROR)
logger.addHandler(log_handler)

def perform_database_operation():
    try:
        # Replace the following line with your actual database connection and query
        connection = sqlite3.connect('your_database.db')
        cursor = connection.cursor()

        # Replace the following line with your actual database operation
        cursor.execute('SELECT * FROM your_table;')

        # Don't forget to commit the changes if you are performing write operations
        connection.commit()

        connection.close()
    except Exception as e:
        # Log the error with the traceback using the logger
        logger.exception("Error occurred while performing the database operation.")
        raise  # Raising the error again allows the script to terminate or handle it at a higher level if needed

def custom_exception_handler(exctype, value, traceback):
    # Log uncaught exceptions using the logger
    logger.exception("Uncaught exception occurred.", exc_info=(exctype, value, traceback))

# Set the custom exception handler for uncaught exceptions
sys.excepthook = custom_exception_handler

# Call the function to perform the database operation
try:
    perform_database_operation()
except Exception as e:
    print("Error occurred during the database operation:", str(e))
 

Here is the release list for August PS Plus free games If you don't want to open the blog post the games are:

PGA Tour 2k23 Dreams Death's Door

IMPO, not exactly a banner list of games this month again

 

Thank you for subscribing. Pleeas help me populate this by posting tuts you have used or scripts you may have made. Also please designate what distro you re using them on to help newbies.

view more: next ›