Advertisement
kmajumder

Untitled

Mar 5th, 2020
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.02 KB | None | 0 0
  1. [root@tendrl25 ~]# /usr/bin/python3
  2. Python 3.6.8 (default, Dec 5 2019, 15:45:45)
  3. [GCC 8.3.1 20191121 (Red Hat 8.3.1-5)] on linux
  4. Type "help", "copyright", "credits" or "license" for more information.
  5. >>> import blivet
  6.  
  7. ** (process:857218): WARNING **: 16:35:31.051: failed to load module lvm: libbd_lvm.so.2: cannot open shared object file: No such file or directory
  8.  
  9. ** (process:857218): WARNING **: 16:35:31.059: failed to load module mpath: libbd_mpath.so.2: cannot open shared object file: No such file or directory
  10.  
  11. ** (process:857218): WARNING **: 16:35:31.059: failed to load module dm: libbd_dm.so.2: cannot open shared object file: No such file or directory
  12.  
  13. ** (process:857218): WARNING **: 16:35:31.060: failed to load module nvdimm: libbd_nvdimm.so.2: cannot open shared object file: No such file or directory
  14. >>> blivetEnv = blivet.Blivet()
  15. >>> blivetEnv.reset()
  16.  
  17. ** (process:857218): CRITICAL **: 16:35:49.913: The function 'bd_nvdimm_namespace_get_devname' called, but not implemented!
  18. Traceback (most recent call last):
  19. File "<stdin>", line 1, in <module>
  20. File "/usr/lib/python3.6/site-packages/blivet/threads.py", line 53, in run_with_lock
  21. return m(*args, **kwargs)
  22. File "/usr/lib/python3.6/site-packages/blivet/blivet.py", line 161, in reset
  23. self.devicetree.populate(cleanup_only=cleanup_only)
  24. File "/usr/lib/python3.6/site-packages/blivet/threads.py", line 53, in run_with_lock
  25. return m(*args, **kwargs)
  26. File "/usr/lib/python3.6/site-packages/blivet/populator/populator.py", line 413, in populate
  27. self._populate()
  28. File "/usr/lib/python3.6/site-packages/blivet/threads.py", line 53, in run_with_lock
  29. return m(*args, **kwargs)
  30. File "/usr/lib/python3.6/site-packages/blivet/populator/populator.py", line 461, in _populate
  31. self.handle_device(dev)
  32. File "/usr/lib/python3.6/site-packages/blivet/threads.py", line 53, in run_with_lock
  33. return m(*args, **kwargs)
  34. File "/usr/lib/python3.6/site-packages/blivet/populator/populator.py", line 261, in handle_device
  35. helper_class = self._get_device_helper(info)
  36. File "/usr/lib/python3.6/site-packages/blivet/threads.py", line 53, in run_with_lock
  37. return m(*args, **kwargs)
  38. File "/usr/lib/python3.6/site-packages/blivet/populator/populator.py", line 226, in _get_device_helper
  39. return get_device_helper(info)
  40. File "/usr/lib/python3.6/site-packages/blivet/populator/helpers/__init__.py", line 53, in get_device_helper
  41. return _six.next((h for h in _device_helpers if h.match(data)), None)
  42. File "/usr/lib/python3.6/site-packages/blivet/populator/helpers/__init__.py", line 53, in <genexpr>
  43. return _six.next((h for h in _device_helpers if h.match(data)), None)
  44. File "/usr/lib/python3.6/site-packages/blivet/populator/helpers/disk.py", line 228, in match
  45. udev.device_is_nvdimm_namespace(data))
  46. File "/usr/lib/python3.6/site-packages/blivet/udev.py", line 966, in device_is_nvdimm_namespace
  47. ninfo = blockdev.nvdimm_namespace_get_devname(devname)
  48. GLib.Error: g-bd-init-error-quark: The function 'bd_nvdimm_namespace_get_devname' called, but not implemented! (1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement