Quantcast
Channel: openSUSE Forums
Viewing all 40713 articles
Browse latest View live

TUMBLEWEED Blackscreen shortly after booting in.

$
0
0
I'm the owner of a R9 390 that came with its own share of problems (pretty much the only distro that works is Linux mint 18.3) but after using these parameters" radeon.si_support=0 radeon.cik_support=0 amdgpu.si_support=1 amdgpu.cik_support=1 amdgpu.dc=1 amdgpu.dpm=1 amdgpu.modeset=1" and blacklisting Radeon I got it working temporarily.
The problem now is that at random moments the screen would go black the keyboard will be unresponsive and the only solution would be to do a hard restart.
Any tip will be greatly appreciated

LEAP 15.1 cupsd: error while loading shared libraries: libimf.so: cannot open shared object file

$
0
0
After updating the system, I cannot use the network printer because this error. I have installed Intel composer XE in my system, but I don't know why.

The kernel of my system is "4.12.14-lp151.28.13-default".

TUMBLEWEED Tumbleweeb and 64 bits system : freedink bugs

$
0
0
Hello

I just wanna report a bug concerning that excellent clone of Zelda, FreeDink.

Since I pass on 64 bits opensuse systems (14.n if I remember well) there were some bug in some software, and this one is include.
I actually use OpenSuse Tumbleweed and about the freedink bug, its's when we save a game, an reload it, the error "segmentation error (Core Dumped)" appear. On Opensuse the last version is 1.08.20120427 whereas on other system (as Fedora) oit's more advanced (as 1.09 version for instance)

I saw that the 1.08 version of 20121209 corrected that bug (Link) and I saw all new verions on this page.

I hope the update will be do soon, it's annoying having to re ebgin the game each time from begining

Best regards.

LEAP 15.1 question on logrotate

$
0
0
In some /etc/logrotate.d files i see the size parameter set like this: size=+1024k and in others its set as e.g "size +4096k" and in still others its "size 10M"
What is the "=+" and plain "+" before the actual size all about? The man page only talks about using a format like "size 10M" or "size 200k" etc and I couldn't find anything via google either

I cant find any info on the "=+" or "+"part
Thanks.

LEAP 15.1 Trying to setup a synology NAS but struggle to get it mounted

$
0
0
Having used OpenSuse for well over a decade, but never did any network management and now have to admit defeat, I am completely stuck... I am by no means familiar with things like Samba, NFS and so on, it becomes a bit daunting at the moment.

After a major harddrive failure I decided to buy an NAS (Synology DS218+) and run it in raid 1 mode. I got it running practically out of the box in Windows, but have failed so far to access it in Leap 15.1 (have not tried other versions or distro's). I can access it via a webbrowser, but obviously I want to have it mounted and directly accessible.

I tried mounting it using the following command:
sudo mount -t cifs -o vers=2.0,user=<myname>,password=<*******> //<IP ADDRESS>/volume1/homes/<myname> /home/NAS/

Which returns the following error:
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) and kernel log messages (dmesg)


I found several reports online of people with the same type of errors returned, where they were able to solve it by changing the version number to "one". Unfortunately, that did not solve the problem for me, it returns the exact same error.

Just to be sure, I checked whether I could find the NAS using:
sudo arp-scan <IP ADDRESS>
which returned a message that the Synology NAS is found on the specified IP address.

This morning I tried to edit my fstab file, adding the NAS adress and mount point manually, but it resulted in my system being unbootable. I managed to reset the fstab file to the original settings using a Leap live stick, so it booted again. But I became a little hesitant to interfere with stuff that I am not familiar with...


Anyone that can explain this noob how to get this working?

Thanks,
Rogier

LEAP 15.1 Python ignores LD_LIBRARY_PATH in openSUSE

$
0
0
There is an unexpected behavior of python in openSUSE (at least Leap 42.3 and Leap 15.1).
I am going to use a python module that needs to load external libraries (pyroot).
Normally, according to hints on the internet, a path to external libraries is set using LD_LIBRARY_PATH, but in openSUSE python does not try to look for libraries in the folders specified by LD_LIBRARY_PATH at all. I have tried the same for Ubuntu, and it worked as expected. Thus, I suppose it is a SUSE-related problem.
What should I do to fix this issue?
In my case the module and all related libraries are located in /usr/local/root/lib.
Here are some logs:
Code:

username@linux-jml8:~> python -c "import ROOT"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/usr/local/root/lib/ROOT.py", line 24, in <module>
    import cppyy
  File "/usr/local/root/lib/cppyy.py", line 61, in <module>
    import libPyROOT as _backend
ImportError: libMathCore.so: cannot open shared object file: No such file or directory

Code:

username@linux-jml8:~> ls /usr/local/root/lib/ROOT.py
/usr/local/root/lib/ROOT.py
username@linux-jml8:~> ls /usr/local/root/lib/libMathCore.so
/usr/local/root/lib/libMathCore.so
username@linux-jml8:~> echo $LD_LIBRARY_PATH
:/usr/local/root/lib
username@linux-jml8:~> echo $PYTHONPATH
/usr/local/root/lib

Code:

username@linux-jml8:~> strace python -c 'import ROOT' |& grep libMathCore.so
openat(AT_FDCWD, "/lib64/tls/haswell/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/tls/haswell/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/tls/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/tls/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/haswell/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/haswell/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/lib64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/tls/haswell/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/tls/haswell/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/tls/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/tls/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/haswell/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/haswell/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/x86_64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
openat(AT_FDCWD, "/usr/lib64/libMathCore.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
ImportError: libMathCore.so: cannot open shared object file: No such file or directory

As you can see, python does not try to check /usr/local/root/lib for the library, even though it is explicitly stated in LD_LIBRARY_PATH.

LEAP 15.1 Fresh install while keeping old home. KDE configuration issue? Icons and fonts super-sized

$
0
0
Hello,
I recently upgraded from LEAP 15.0 to 15.1 (both KDE) and I kept the old /home directory.

I have a funny development. Everything seemed okay more-or-less in the beginning and at some point I started booting where all of the window borders have been enlarged, as well as its icons. After reboot, they would be "normal" size again.

After a number of reboots, I seem to only boot with icons extremely enlarged not only for the window borders, or task manager, but for the entire desktop session.

I have a funny feeling that this must be some sort of issues with configuration, and I ran into similar problem years ago and I remember having to delete a configuration file to get everything to work. Could someone help me with this?

TUMBLEWEED which community software repo should I choose?

$
0
0
As the pictures show,


I want to install software "codeblocks",but it can't be found in openSUSE OSS or non-oss repo.


So,I login this website: software.opensuse.org


and find this software.


But the question is,so many so many community software repo,which one should I choose is better? Which one has less bugs or problems? I am very confused.


Could you give me some advice?


TUMBLEWEED arm-none-eabi-g++ missiing

$
0
0
Hi, I'm cross compiling C/C++ programs from openSUSE to a Cortex M embedded system. I'm using Eclipse as my IDE and it complains that "arm-none-eabi-g++" can't be found. I have installed the "cross-arm-none-gcc9" rpm but it doesn't provide the program I'm missing. However, I see that there's "arm-none-eabi-gcc" and "arm-none-eabi-cpp".

I'm rather new to this and I apologize if this has been answered before. I checked this forums but couldn't find if the Eclipse IDE has to be modified to work with what we have or if I need to install additional packages.

Any information is greatly appreciated.

Regards,

LEAP 15.1 Extremely slow google-chrome since last update

$
0
0
Hello,
My default web browser is google-chrome and since the last update which included:
Code:

libopenssl1_1-32bit-1.1.0i-lp151.8.3.1.x86_64
libopenssl1_1-1.1.0i-lp151.8.3.1.x86_64

the chrome is excruciatingly slow. It seems to apply to LEAP 15.0 and LEAP 15.1 machines. It is particularly slow when trying to access the settings, or a new tab. I am not quite sure what's going on. The terminal output is the following:
Code:

~> google-chrome
Invalid MIT-MAGIC-COOKIE-1 key
(google-chrome-unstable:4505): Gtk-WARNING **: Theme parsing error: gtk.css:10777:44: Expected a valid selector
Invalid  MIT-MAGIC-COOKIE-1 keyInvalid MIT-MAGIC-COOKIE-1 keyInvalid  MIT-MAGIC-COOKIE-1 keyInvalid MIT-MAGIC-COOKIE-1  key[4539:4539:0924/202903.210305:ERROR:sandbox_linux.cc(369)]  InitializeSandbox() called with multiple threads in process gpu-process.
[4539:4539:0924/202910.686615:ERROR:buffer_manager.cc(488)]  [.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : glBufferData:  <- error from previous GL command

I would appreciate any input.
Thank you for your time.
-SJL

TUMBLEWEED Opensuse Thumbleweed console login failure after update

$
0
0
I recently did an update to Opensuse 15 tumbleweed VM (virtualbox). The update completed without a problem until I rebooted the VM. Everytime I try and login no matter what account it will jump back to the login screen. I type in the username and it would just jump back to username ("don't even get a chance to enter a password) and displays Welcome to opensuse Thumbleweed. There is no GUI installed. I tried to boot to a previous snapshot by choosing it in the advanced boot option and it is doing the same. I have updated other VMs on my server and they do not have the same problem.

Kernel is 5.2.14

Any help in fixing this would be great.

TUMBLEWEED Dell keyboard backlight behavior recently broke

$
0
0
I have a Dell Studio 1558 with keyboard backlighting. My problem has to do with the backlight no longer turning back on once it has turned off.

Historically, I have had to edit /etc/dbus-1/system.d/org.freedesktop.UPower.conf and comment out the following two lines for keyboard backlighting to work:

Quote:

<allow send_destination="org.freedesktop.UPower"
send_interface="org.freedesktop.UPower.KbdBacklight"/>
Recently I discovered that this file had been moved to /usr/share/dbus-1/system.d/org.freedesktop.UPower.conf, where I repeated my edit, but have still been having problems that once my keyboard backlight turns off, it won't turn back on by keyboard or touchpad activity.

Further investigation showed that the contents of the file start_triggers in /sys/class/leds/dell::kbd_backlight (also found in /sys/devices/platform/dell-laptop/leds/dell::kbd_backlight) are set to "-keyboard -touchpad".

When I edit the file to contain "+keyboard +touchpad" things work for a while. When the keyboard backlight turns off, keyboard or touchpad activity turns it back on.

My problem is that something keeps changing the file contents back to "-keyboard -touchpad", which leaves me having to turn the keyboard backlight back on using the function key - something hard to do in the dark!

When I do turn on the keyboard backlight with the Fn-F6 function key (which is only supposed to be used to changing brightness), the start_triggers file is again modified by the system to "+keyboard +touchpad", but this goes away after a while with the contents reverting to "-keyboard -touchpad".

I've not determined the exact parameters of when the keyboard backlight is disabled, whether it's just a matter of time, or letting the laptop sleep or something else. And I have no idea what process is playing with start_triggers.

Any help if getting this back under control will be greatly appreciated.

LEAP 15.1 Individual processes in cgroup for distinct swappiness

$
0
0
Hi,


I have been using Leap 15 (and now 15.1) since the beginning and I see that it already comes with a pre-configured cgroup tree with system.slice, user.slice, etc

I would like to change the swappiness of a specific process (probably by his PID) without having to re-mount cgroups from scratch. That is, keeping the default cgroup tree that is shipped with Leap 15.1 (except maybe for creating a new subfolder into /sys/fs/cgroup/memory ).

One option I saw may help is through

Code:

systemctl set-property --runtime ...
But I haven't found any command to set the swappiness, just the maximum size of the swap file.


Thank you all in advance.

LEAP 15.1 FireFox does not get major updates on Leap

$
0
0
While Chromium continuously gets updates on Leap v74.0, v75.0, v76.0, v77.0, etc. on the Main Update Repository, FireFox is stuck on the old v60. The latest FireFox version is 69.

It is very important to have the latest stable Web Browser.
I understand that Leap should have more stable packages than Tumbleweed, but it should not have such an old browser.
Leap 15.1 came with Chromium 74.0.3729. Instead of remaining on version 74 and only get specific patch updates, it has been regularly updated to new major versions.

There is an additional Mozilla repository for Leap, but it looks like it is perhaps invalid (Show 7 excluded/disabled results)
https://download.opensuse.org/reposi...USE_Leap_15.1/

An Web application we develop experienced problems, a certain page not working properly with FireFox 60, but worked fine in FireFox 69.

LEAP 15.1 Upgrading from Glibc 2.26 to Glibc 2.9

$
0
0
In downloading the GLIBC 2.9 from OPENSUSE, upon installation still wants to break ruby-rails by not having the libwcrypt.so.1.

Has anyone else had this problem and been able to work around it?

LEAP 15.1 Sublime text permissions

$
0
0
hi to all
I'm new to the forum and my name is Luigi
I state that I understand little of the linux system and am using openSuse Leap 15.1 on vmware
everything was successfully installed and I added sublime text and wampp
the problem is with sublime text permissions
I can't save the documents to the / opt / lampp / htdocs folder
tells me that I don't have the permissions and everything is denied
please how can I fix it

LEAP 15.1 Kmail, Firefox and HTML-encoded emails

$
0
0
Does anyone know how Kmail displays HTM-encoded emails? Does it use its own rendering utility, or the system's default browser, or some other external package?

I'm trying to track down the cause of long periods of 100% CPU utilisation which seem to occur when reading HTML-encoded emails containing daily digests from a newspaper and clicking on links which bring up the full stories in Firefox. The only thing I can be fairly sure about is that a task manager (XFCE?) is consuming up to 67% and I suspect "firefox-contentproc" process(es) are taking most of the rest.

The Windows version of Firefox seems to have its own task manager; does the Leap 51.1 version use the XFCE task manager?

LEAP 15.1 Yast2 Online Update: Cannot access installation media

$
0
0
Trying to update my system, I get a message box stating:

Cannot access installation media

http://download.opensuse.org/distrib.../repo/non-oss/
(Medium 1).

Check whether the server is accessible.

URL: http://download.opensuse.org/distrib.../repo/non-oss/

Permission to access 'http://download.opensuse.org/distribution/leap/15.1/repo/non-oss/repodata/repomd.xml' denied.

Also the pop-up message box that reports "Cannot access installation media" presents choices Retry, Abort, Skip, and whichever one I choose, the message box keeps reappearing. So I have to hurry to kill the update window, usually unsuccessfuly. So it's difficult to get out of the updater so that I can open the repo manager.

I went into the repo manager and tried to add an http repo for http://download.opensuse.org/distrib.../repo/non-oss/ and also tried to add it as https, but it tells me "Invalid URL:http://download.opensuse.org/distrib.../repo/non-oss/ "

What do I try next?

Tumbleweed Snapshots Trending High with Bash, PulseAudio, Curl Updates

$
0
0
Three openSUSE Tumbleweed snapshots released this week brought about two dozen new versions of software. The snapshots brought one new major version update for pulseaudio and an updated version of bash. The major version update to pulseaudio 13.0 came in Snapshot 20190921. The sound server program improved the initial card profile selection for Advanced Linux […]

More...

TUMBLEWEED Help please to mount smaba share with write access for a specific user

$
0
0
Running Tumbleweed KDE. I used to use SMB4K for managing mounting and unmounting my Samba shares but now it does not work because of the changes in Samba. So I've been trying to use mount.cifs to mount a share and get it to be owned by my user with write access. However everything I've tried will only mount it with root access. Also when unmounting it removes the directory used which I also do not want. I've tried adding options of user uid and gid but to no avail, the mounted share always ends up as root,root permissions. I do not want to have any of the shares mount at boot time as some of them will not be on the lan as they are on laptops etc which are not powered on all the time. I should point out the share can be accessed using the smb:// protocol in Dolphin but for what I need I have to have it mounted at a specific mount point.

So can someone please point me in the right direction for a command which will mount a share with write access for a specific user and keep the used directory when unmounting the share?

Stuart
Viewing all 40713 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>