Advertisement
codegazer

screen resolution

Dec 18th, 2022 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. └─$ xrandr
  2. xrandr: Failed to get size of gamma for output default
  3. Screen 0: minimum 640 x 480, current 1024 x 768, maximum 1024 x 768
  4. default connected primary 1024x768+0+0 0mm x 0mm
  5. 1024x768 0.00*
  6. 800x600 0.00
  7. 640x480 0.00
  8.  
  9. ┌──(user㉿kali)-[~]
  10. └─$ /bin/sudo apt install read-edid; cd /sys; find . -iname *edid
  11. Reading package lists... Done
  12. Building dependency tree... Done
  13. Reading state information... Done
  14. read-edid is already the newest version (3.0.2-1.1).
  15. The following packages were automatically installed and are no longer required:
  16. dh-elpa-helper libgdal31 linux-image-5.19.0-kali2-amd64
  17. python-pastedeploy-tpl
  18. Use 'sudo apt autoremove' to remove them.
  19. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  20. find: ‘./kernel/tracing’: Permission denied
  21. find: ‘./kernel/debug’: Permission denied
  22. find: ‘./fs/pstore’: Permission denied
  23. find: ‘./fs/bpf’: Permission denied
  24.  
  25. ┌──(user㉿kali)-[/sys]
  26. └─$ /bin/sudo -i
  27.  
  28. ┌──(root㉿kali)-[~]
  29. └─# cd /sys; find . -iname *edid
  30.  
  31. ┌──(root㉿kali)-[/sys]
  32. └─#
  33.  
  34. ┌──(root㉿kali)-[/sys]
  35. └─# find . -iname *edid*
  36. ./module/drm/parameters/edid_firmware
  37. ./module/drm/parameters/edid_fixup
  38.  
  39.  
  40.  
  41. ┌──(root㉿kali)-[/sys]
  42. └─# ls -l /sys/class/drm/
  43. total 0
  44. -r--r--r-- 1 root root 4096 Dec 18 13:03 version
  45.  
  46. ┌──(root㉿kali)-[/sys]
  47. └─# file /sys/class/drm/version
  48. /sys/class/drm/version: ASCII text
  49.  
  50. ┌──(root㉿kali)-[/sys]
  51. └─# nl -ba /sys/class/drm/version
  52. 1 drm 1.1.0 20060810
  53.  
  54.  
  55.  
  56. from: /bin/sudo hw-probe -all -show # looking at: /root/HW_PROBE/LATEST/hw.info/devices.json
  57. "eisa:lcd-monitor-2560x1080" : {
  58. "Bus" : "EISA",
  59. "Device" : "LCD Monitor 2560x1080",
  60. "Resolution" : "2560x1080",
  61. "Status" : "works",
  62. "Type" : "monitor
  63. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement