petak, 9. studenoga 2018.

KDE mount USB device fails at OpenSuse

KDE mount USB device fails at OpenSuse

An error occured while accesiing , the system responded: An unspecified error has occured. An read ACL for if 1000 to failed: invalid argument

$ sudo mkdir -p /run/media/my_user
$ sudo chown my_user:users /run/media/my_user
$ sudo chmod 775 /run/media/my_user

Disable Network Manager on Mint

$ sudo stop network-manager
$ echo "manual" | sudo tee /etc/init/network-manager.override
$ sudo vi /etc/NetworkManager/NetworkManager.conf
$ sudo vi /etc/network/interfaces

# The loopback network interface
auto lo
iface lo inet loopback

# network interface not managed by Network Manager
allow-hotplug eth0
iface eth0 inet static
address 192.168.1.10
netmask 255.255.255.0
gateway 182.168.1.1
dns-nameservers 8.8.8.8

$ nmcli dev status

Games for KDE OpenSUSE

# zypper install bomber bovo granatier kapman katomic kblackbox kblocks kbounce kbreakout kdiamond kfourinline kgoldrunner kigo killbots kiriki kjumpingcube klickety klines kmahjongg kmines knavalbattle knetwalk kolf kollision konquest kpat kreversi kshisen ksirk ksnakeduel kspaceduel ksquares ksudoku ktuberling kubrick lskat palapeli picmi kajongg

Dolphin - Super User Mode

Application Menu >
    Dolphin >
        Edit Applications >
            New Item >
                General >
                    Name: Dolphin - Super User Mode
                    Command: dbus-launch dolphin -qwindowtitle "%c" "%u"

                Advanced > Run as a different user



nedjelja, 17. lipnja 2018.

Change vendor and update all packages from Packman repo in OpenSuse 15.0



Add all Packman repo into OpenSuse Leap 15.0:
$ sudo zypper ar -f http://packman.jacobs-university.de/suse/openSUSE_Leap_15.0/ Packman-repo-15.0

Show all repos in OpenSuse:
$ sudo zypper repos





$ sudo zypper install --from [repository] [package]

In my case update gstreamer-plugins-bad-lang package from Packman repo:
$ sudo zypper install --from Packman-repo-15.0 gstreamer-plugins-bad-lang

Change vendor and update all packages from Packman repo:
$ sudo zypper dup --from Packman-repo-15.0

Refresh repo, update packages and upgrade and clean OpenSuse:
$ sudo zypper ref && sudo zypper update -y && sudo zypper dup -y && sudo zypper clean

subota, 16. lipnja 2018.

Allow CUPS to install printer in Chrome browser

This procedure will allow CUPS to install printer in Chrome browser. If Chrome shows unauthorized message, do the following.

CUPS > Administration > Add printer on Chrome shows:
Unauthorized
Enter your username and password or the root username and password to access this page. If you are using Kerberos authentication, make sure you have a valid Kerberos ticket.



Create a copy of the CUPS config file:
# cp /etc/cups/cupsd.conf /etc/cups/cupsd.conf-BAK



Edit CUPS:
# vim /etc/cups/cupsd.conf

Change:

AuthType Default
Require user @SYSTEM
Order deny,allow


To:

AuthType None
# AuthType Default
# Require user @SYSTEM
Order deny,allow




Restart CUPS after editing:
# systemctl restart cups