Детальный разбор дистрибутивов и других UNIX-like ОС
Модераторы: Olej, bellic, adminn, vikos
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 12 июл 2022, 00:19
Установка гостевых дополнений VB... (сборка драйверов-модулей ядра) ... мне это удалось только подключением ISO расширений в настройках VM ...:
- Снимок экрана от 2022-07-12 00-20-25.png (58.89 КБ) 1206 просмотров
Код: Выделить всё
$ aptitude search header | grep ^i
i linux-headers-4.9.189-antix.1-amd64-smp - Linux kernel headers for 4.9.189-antix.1-amd64-smp on amd64
Код: Выделить всё
$ sudo mkdir cdrom
$ sudo mount -t iso9660 /dev/cdrom /mnt/cdrom
mount: /mnt/cdrom: WARNING: device write-protected, mounted read-only.
Код: Выделить всё
$ ls -l /mnt/cdrom
итого 47310
-r--r--r-- 1 root root 763 фев 20 2020 AUTORUN.INF
-r-xr-xr-x 1 root root 6384 мар 23 01:48 autorun.sh
dr-xr-xr-x 2 root root 792 мар 23 02:35 cert
dr-xr-xr-x 2 root root 1824 мар 23 02:35 NT3x
dr-xr-xr-x 2 root root 2652 мар 23 02:35 OS2
-r-xr-xr-x 1 root root 4821 мар 23 01:48 runasroot.sh
-r--r--r-- 1 root root 592 мар 23 02:35 TRANS.TBL
-r--r--r-- 1 root root 4033829 мар 23 01:51 VBoxDarwinAdditions.pkg
-r-xr-xr-x 1 root root 3949 мар 23 01:47 VBoxDarwinAdditionsUninstall.tool
-r-xr-xr-x 1 root root 7505330 мар 23 01:48 VBoxLinuxAdditions.run
-r--r--r-- 1 root root 9445376 мар 23 01:49 VBoxSolarisAdditions.pkg
-r-xr-xr-x 1 root root 17047696 мар 23 02:35 VBoxWindowsAdditions-amd64.exe
-r-xr-xr-x 1 root root 270840 мар 23 01:48 VBoxWindowsAdditions.exe
-r-xr-xr-x 1 root root 10116464 мар 23 02:12 VBoxWindowsAdditions-x86.exe
-r--r--r-- 1 root root 259 окт 4 2021 windows11-bypass.reg
Код: Выделить всё
$ sudo ./VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 6.1.34 Guest Additions for Linux........
VirtualBox Guest Additions installer
This system appears to have a version of the VirtualBox Guest Additions
already installed. If it is part of the operating system and kept up-to-date,
there is most likely no need to replace it. If it is not up-to-date, you
should get a notification when you start the system. If you wish to replace
it with this version, please do not continue with this installation now, but
instead remove the current version first, following the instructions for the
operating system.
If your system simply has the remains of a version of the Additions you could
not remove you should probably continue now, and these will be removed during
installation.
Do you wish to continue? [yes or no]
y
touch: невозможно выполнить touch для '/var/lib/VBoxGuestAdditions/skip-4.9.189-antix.1-amd64-smp': Нет такого файла или каталога
Copying additional installer modules ...
Installing additional modules ...
VirtualBox Guest Additions: Starting.
VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel
modules. This may take a while.
VirtualBox Guest Additions: To build modules for other installed kernels, run
VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup <version>
VirtualBox Guest Additions: or
VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all
VirtualBox Guest Additions: Building the modules for kernel
4.9.189-antix.1-amd64-smp.
VirtualBox Guest Additions: Running kernel modules will not be replaced until
the system is restarted
Building the VirtualBox Guest Additions kernel modules. This may take a while.
To build modules for other installed kernels, run
/sbin/rcvboxadd quicksetup <version>
or
/sbin/rcvboxadd quicksetup all
Running kernel modules will not be replaced until the system is restarted
vboxadd-service.sh: Starting VirtualBox Guest Addition service.
Всё собралось...
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 12 июл 2022, 01:32
Olej писал(а): ↑12 июл 2022, 00:19
Всё собралось...
Код: Выделить всё
$ modinfo vboxvideo
filename: /lib/modules/4.9.189-antix.1-amd64-smp/misc/vboxvideo.ko
version: 6.1.34 r150636
license: GPL and additional rights
description: Oracle VM VirtualBox Graphics Card
author: Oracle Corporation
srcversion: C2651E4355C21A0CBCB4278
alias: pci:v000080EEd0000BEEFsv*sd*bc*sc*i*
depends: drm,drm_kms_helper,ttm
retpoline: Y
vermagic: 4.9.189-antix.1-amd64-smp SMP preempt mod_unload modversions
parm: modeset:Disable/Enable modesetting (int)
Код: Выделить всё
$ ls -l /lib/modules/4.9.189-antix.1-amd64-smp/misc/
итого 612
-rw-r--r-- 1 root root 439616 июл 12 00:52 vboxguest.ko
-rw-r--r-- 1 root root 113192 июл 12 00:53 vboxsf.ko
-rw-r--r-- 1 root root 66424 июл 12 00:54 vboxvideo.ko
Код: Выделить всё
$ lsmod | grep vb
vboxvideo 28571 0
ttm 73788 2 vboxvideo,vmwgfx
drm_kms_helper 111789 2 vboxvideo,vmwgfx
vboxguest 237515 1
drm 271529 6 vboxvideo,vmwgfx,ttm,drm_kms_helper
Но что-то там не так ... и размер экрана под окно не масштабируется...
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 14 июл 2022, 18:19
Olej писал(а): ↑18 янв 2022, 20:37
Разработчики antiX со своими наработками продолжили развитие в MX Linux.
Тем не менее, сама страница проекта:
https://antixlinux.com/
Please read: updated 28 December 2021 security-kernel-upgrades
Download
ISO download mirrors
antiX-21 files - Initial release 31 October 2021
Latest release: antiX-21 - Released 31 October 2021
Index of /mirrors/MX-Linux/MX-ISOs/ANTIX/Final/antiX-21/
Код: Выделить всё
../
runit-bullseye/ 31-Oct-2021 23:01 -
README.txt 31-Oct-2021 16:36 1233
antiX-21-net_386-net.iso 31-Oct-2021 15:53 180M
antiX-21-net_386-net.iso.md5 31-Oct-2021 15:53 59
antiX-21-net_386-net.iso.sha256 31-Oct-2021 15:53 91
antiX-21-net_386-net.iso.sig 31-Oct-2021 15:53 310
antiX-21-net_386-net.iso.zsync 31-Oct-2021 15:53 315K
antiX-21-net_x64-net.iso 31-Oct-2021 15:47 176M
antiX-21-net_x64-net.iso.md5 31-Oct-2021 15:47 59
antiX-21-net_x64-net.iso.sha256 31-Oct-2021 15:47 91
antiX-21-net_x64-net.iso.sig 31-Oct-2021 15:47 310
antiX-21-net_x64-net.iso.zsync 31-Oct-2021 15:47 308K
antiX-21_386-base.iso 31-Oct-2021 13:57 787M
antiX-21_386-base.iso.md5 31-Oct-2021 13:58 56
antiX-21_386-base.iso.sha256 31-Oct-2021 13:58 88
antiX-21_386-base.iso.sig 31-Oct-2021 13:58 310
antiX-21_386-base.iso.zsync 31-Oct-2021 13:58 2M
antiX-21_386-core.iso 31-Oct-2021 15:35 444M
antiX-21_386-core.iso.md5 31-Oct-2021 15:35 56
antiX-21_386-core.iso.sha256 31-Oct-2021 15:35 88
antiX-21_386-core.iso.sig 31-Oct-2021 15:35 310
antiX-21_386-core.iso.zsync 31-Oct-2021 15:35 888K
antiX-21_386-full.iso 31-Oct-2021 11:47 1G
antiX-21_386-full.iso.md5 31-Oct-2021 11:47 56
antiX-21_386-full.iso.sha256 31-Oct-2021 11:47 88
antiX-21_386-full.iso.sig 31-Oct-2021 11:47 310
antiX-21_386-full.iso.zsync 31-Oct-2021 11:47 2M
antiX-21_x64-base.iso 31-Oct-2021 12:52 774M
antiX-21_x64-base.iso.md5 31-Oct-2021 12:52 56
antiX-21_x64-base.iso.sha256 31-Oct-2021 12:52 88
antiX-21_x64-base.iso.sig 31-Oct-2021 12:52 310
antiX-21_x64-base.iso.zsync 31-Oct-2021 12:52 2M
antiX-21_x64-core.iso 31-Oct-2021 15:16 437M
antiX-21_x64-core.iso.md5 31-Oct-2021 15:16 56
antiX-21_x64-core.iso.sha256 31-Oct-2021 15:16 88
antiX-21_x64-core.iso.sig 31-Oct-2021 15:16 310
antiX-21_x64-core.iso.zsync 31-Oct-2021 15:16 874K
antiX-21_x64-full.iso 31-Oct-2021 10:36 1G
antiX-21_x64-full.iso.md5 31-Oct-2021 10:36 56
antiX-21_x64-full.iso.sha256 31-Oct-2021 10:36 88
antiX-21_x64-full.iso.sig 31-Oct-2021 10:36 310
antiX-21_x64-full.iso.zsync 31-Oct-2021 10:36 3M
Для быстрой загрузки -
Torrent Files.
Любой каприз...
-
Вложения
-
- antiX-21_386-core.iso.torrent
- (34.98 КБ) 50 скачиваний
-
- antiX-21_386-base.iso.torrent
- (61.77 КБ) 76 скачиваний
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 14 июл 2022, 18:31
Olej писал(а): ↑14 июл 2022, 18:19
Для быстрой загрузки
С торентов загрузка всего около 2 минут ... а имиджи мне (на сегодня) нужны только базовые, для тестирования в VirtualBox написанных модулей ядра... (в разных
версиях ядра, в том числе и для 32-бит установок):
Код: Выделить всё
olej@nvidia:~/Загрузки/ISO/antiX$ ls -l antiX-21_386-*.iso
-rw-r--r-- 1 olej olej 825229312 июл 14 18:30 antiX-21_386-base.iso
Код: Выделить всё
-rw-r--r-- 1 olej olej 465567744 июл 14 18:29 antiX-21_386-core.iso
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 14 июл 2022, 19:41
Olej писал(а): ↑14 июл 2022, 18:31
для 32-бит установок)
Инсталляция подробная, понятная и приятная...
-
Вложения
-
- Снимок экрана от 2022-07-14 19-04-13.png (425.06 КБ) 1179 просмотров
-
- Снимок экрана от 2022-07-14 19-05-50.png (191.51 КБ) 1179 просмотров
-
- Снимок экрана от 2022-07-14 19-06-15.png (217.21 КБ) 1179 просмотров
-
- Снимок экрана от 2022-07-14 19-13-39.png (198.82 КБ) 1179 просмотров
-
- Снимок экрана от 2022-07-14 19-21-05.png (427.76 КБ) 1179 просмотров
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 14 июл 2022, 19:53
Код: Выделить всё
$ uname -a
Linux antix21 4.9.0-279-antix.1-486-smp #1 SMP Sun Aug 8 20:59:37 EEST 2021 i686 GNU/Linux
Дальше - VirtualBox:
По крайней мере из дефаултных версий ничего не установлено...
Код: Выделить всё
Использую примонтированый в менеджере VirtualBox ISO дополнений...
[code]
root@antix21:~# cd /mnt
root@antix21:/mnt# mkdir cdrom
root@antix21:/mnt# cd cdrom/
root@antix21:/mnt/cdrom# ls /dev/cd*
/dev/cdrom
root@antix21:/mnt/cdrom# mount -t iso9660 /dev/cdrom /mnt/cdrom/
mount: /mnt/cdrom: WARNING: source write-protected, mounted read-only.
Код: Выделить всё
root@antix21:/mnt/cdrom# ls -l /mnt/cdrom
итого 47310
-r--r--r-- 1 root root 763 фев 20 2020 AUTORUN.INF
-r-xr-xr-x 1 root root 6384 мар 23 01:48 autorun.sh
dr-xr-xr-x 2 root root 792 мар 23 02:35 cert
dr-xr-xr-x 2 root root 1824 мар 23 02:35 NT3x
dr-xr-xr-x 2 root root 2652 мар 23 02:35 OS2
-r-xr-xr-x 1 root root 4821 мар 23 01:48 runasroot.sh
-r--r--r-- 1 root root 592 мар 23 02:35 TRANS.TBL
-r--r--r-- 1 root root 4033829 мар 23 01:51 VBoxDarwinAdditions.pkg
-r-xr-xr-x 1 root root 3949 мар 23 01:47 VBoxDarwinAdditionsUninstall.tool
-r-xr-xr-x 1 root root 7505330 мар 23 01:48 VBoxLinuxAdditions.run
-r--r--r-- 1 root root 9445376 мар 23 01:49 VBoxSolarisAdditions.pkg
-r-xr-xr-x 1 root root 17047696 мар 23 02:35 VBoxWindowsAdditions-amd64.exe
-r-xr-xr-x 1 root root 270840 мар 23 01:48 VBoxWindowsAdditions.exe
-r-xr-xr-x 1 root root 10116464 мар 23 02:12 VBoxWindowsAdditions-x86.exe
-r--r--r-- 1 root root 259 окт 4 2021 windows11-bypass.reg
Код: Выделить всё
root@antix21:/mnt/cdrom# /mnt/cdrom/VBoxLinuxAdditions.run
Verifying archive integrity... All good.
Uncompressing VirtualBox 6.1.34 Guest Additions for Linux........
VirtualBox Guest Additions installer
./install.sh: 143: VBoxControl: not found
This system appears to have a version of the VirtualBox Guest Additions
already installed. If it is part of the operating system and kept up-to-date,
there is most likely no need to replace it. If it is not up-to-date, you
should get a notification when you start the system. If you wish to replace
it with this version, please do not continue with this installation now, but
instead remove the current version first, following the instructions for the
operating system.
If your system simply has the remains of a version of the Additions you could
not remove you should probably continue now, and these will be removed during
installation.
Do you wish to continue? [yes or no]
yes
touch: невозможно выполнить touch для '/var/lib/VBoxGuestAdditions/skip-4.9.0-279-antix.1-486-smp': Нет такого файла или каталога
Copying additional installer modules ...
Installing additional modules ...
VirtualBox Guest Additions: Starting.
VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel
modules. This may take a while.
VirtualBox Guest Additions: To build modules for other installed kernels, run
VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup <version>
VirtualBox Guest Additions: or
VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all
VirtualBox Guest Additions: Building the modules for kernel
4.9.0-279-antix.1-486-smp.
Building the VirtualBox Guest Additions kernel modules. This may take a while.
To build modules for other installed kernels, run
/sbin/rcvboxadd quicksetup <version>
or
/sbin/rcvboxadd quicksetup all
Running kernel modules will not be replaced until the system is restarted
vboxadd-service.sh: Starting VirtualBox Guest Addition service.
Код: Выделить всё
root@antix21:/lib/modules/4.9.0-279-antix.1-486-smp/misc# pwd
/lib/modules/4.9.0-279-antix.1-486-smp/misc
root@antix21:/lib/modules/4.9.0-279-antix.1-486-smp/misc# ls -l
итого 500
-rw-r--r-- 1 root root 355468 июл 14 19:28 vboxguest.ko
-rw-r--r-- 1 root root 97216 июл 14 19:28 vboxsf.ko
-rw-r--r-- 1 root root 54904 июл 14 19:29 vboxvideo.ko
Код: Выделить всё
root@antix21:/lib/modules/4.9.0-279-antix.1-486-smp/misc# modinfo *
filename: /lib/modules/4.9.0-279-antix.1-486-smp/misc/vboxguest.ko
version: 6.1.34 r150636
license: GPL
description: Oracle VM VirtualBox Guest Additions for Linux Module
author: Oracle Corporation
srcversion: 3CB360B06B127CF0A29CFF8
alias: pci:v000080EEd0000CAFEsv00000000sd00000000bc*sc*i*
depends:
retpoline: Y
vermagic: 4.9.0-279-antix.1-486-smp SMP mod_unload modversions 486
filename: /lib/modules/4.9.0-279-antix.1-486-smp/misc/vboxsf.ko
version: 6.1.34 r150636
alias: fs-vboxsf
license: GPL and additional rights
author: Oracle Corporation
description: Oracle VM VirtualBox VFS Module for Host File System Access
srcversion: 1928D070458262836821684
depends: vboxguest
retpoline: Y
vermagic: 4.9.0-279-antix.1-486-smp SMP mod_unload modversions 486
parm: follow_symlinks:Let host resolve symlinks rather than showing them (int)
filename: /lib/modules/4.9.0-279-antix.1-486-smp/misc/vboxvideo.ko
version: 6.1.34 r150636
license: GPL and additional rights
description: Oracle VM VirtualBox Graphics Card
author: Oracle Corporation
srcversion: C2651E4355C21A0CBCB4278
alias: pci:v000080EEd0000BEEFsv*sd*bc*sc*i*
depends: drm,drm_kms_helper,ttm
retpoline: Y
vermagic: 4.9.0-279-antix.1-486-smp SMP mod_unload modversions 486
parm: modeset:Disable/Enable modesetting (int)
Дальше перезагрузка...
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 14 июл 2022, 19:54
Olej писал(а): ↑14 июл 2022, 19:53
Дальше перезагрузка...
Масштабирование окна работает!
Но я никогда не видел чтобы оно работало так странно (в отношении заставки)!
- Снимок экрана от 2022-07-14 19-37-59.png (212.92 КБ) 1177 просмотров
Код: Выделить всё
$ inxi -Gxxx
Graphics: Device-1: VMware SVGA II Adapter driver: vmwgfx v: 2.12.0.0 bus-ID: 00:02.0 chip-ID: 15ad:0405 class-ID: 0300
Display: x11 server: X.Org 1.20.11 driver: loaded: vmware unloaded: fbdev,modesetting,vesa
resolution: 1753x743~60Hz s-dpi: 96
OpenGL: renderer: llvmpipe (LLVM 11.0.1 128 bits) v: 4.5 Mesa 20.3.5 compat-v: 3.1 direct render: Yes
Код: Выделить всё
$ xrandr
Screen 0: minimum 1 x 1, current 1753 x 743, maximum 8192 x 8192
Virtual1 connected primary 1753x743+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1753x743 60.00*+
2560x1600 59.99
1920x1440 60.00
1856x1392 60.00
1792x1344 60.00
1920x1200 59.88
1600x1200 60.00
1680x1050 59.95
1400x1050 59.98
1280x1024 60.02
1440x900 59.89
1280x960 60.00
1360x768 60.02
1280x800 59.81
1152x864 75.00
1280x768 59.87
1024x768 60.00
800x600 60.32
640x480 59.94
Virtual2 disconnected (normal left inverted right x axis y axis)
Virtual3 disconnected (normal left inverted right x axis y axis)
Virtual4 disconnected (normal left inverted right x axis y axis)
Virtual5 disconnected (normal left inverted right x axis y axis)
Virtual6 disconnected (normal left inverted right x axis y axis)
Virtual7 disconnected (normal left inverted right x axis y axis)
Virtual8 disconnected (normal left inverted right x axis y axis)
Но браузер открытый
во весь экран прекрасно понимает размер этого экрана:
- Снимок экрана от 2022-07-14 19-55-13.png (121.36 КБ) 1177 просмотров
P.S. Кстати... В качестве дефаултного браузера они используют SeaMonkey
Код: Выделить всё
$ seamonkey --version
Mozilla SeaMonkey 2.53.9.1
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 15 июл 2022, 14:34
Достаточно интересный обзор (хотя он и относится ещё к antiX 17):
настройка antix после установки
23 мая, 2020
Для antiX-full требуется минимальный размер жесткого диска 3,8 ГБ . Antix база нуждается в 2,6 Гб и Antix-ядро нуждается в 1.0GB. Анти-сеть требует 0,7 ГБ.
...
Какие оконные менеджеры доступны в antiX 17?
Rox-IceWM (по умолчанию) — легкий
IceWM — легкий
SpaceFM-IceWM-легкий
Rox-Fluxbox — минималистский менеджер
Fluxbox — минималистский менеджер
SpaceFM-Fluxbox — минималистский менеджер
Rox-JWM — очень минималистский менеджер
JWM — очень минималистский менеджер
SpaceFM-JWM -очень минималистский менеджер
...
antiX основан на стабильной ветке Debian Stable.
В системе не используется systemd (демон для инициализации служб в процессе загрузки системы).
Репозитории
В дистрибутиве доступны все репозитории Debian.
По желанию можно подключить Debian-testing и unstable репозитории.
Основная цель antiX предоставить легкую, но при этом функциональную операционную систему, способную работать на старых компьютерах.
Таки да - не использует systemd:
Код: Выделить всё
$ uname -a
Linux antix21 4.9.0-279-antix.1-486-smp #1 SMP Sun Aug 8 20:59:37 EEST 2021 i686 GNU/Linux
Код: Выделить всё
$ ps -A | head
PID TTY TIME CMD
1 ? 00:00:01 init
2 ? 00:00:00 kthreadd
3 ? 00:00:00 ksoftirqd/0
4 ? 00:00:00 kworker/0:0
5 ? 00:00:00 kworker/0:0H
7 ? 00:00:01 rcu_sched
8 ? 00:00:00 rcu_bh
9 ? 00:00:00 migration/0
10 ? 00:00:00 lru-add-drain
antiX может быть использован как быстрая LiveCD/LiveUSB-система для восстановления компьютеров.
Приложения, которые вы установите в Live-режиме, сохранятся в системе после ее установки.
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 15 июл 2022, 16:44
Olej писал(а): ↑14 июл 2022, 19:54
Но я никогда не видел чтобы оно работало так странно (в отношении заставки)!
WM antiX:
Код: Выделить всё
$ jwm -v
JWM v2.4.2 by Joe Wingbermuehle
compiled options: confirm icons jpeg nls pango png shape svg xbm xft xinerama xpm xrender
system configuration: /etc/jwm/system.jwmrc
Код: Выделить всё
$ icewm --version
IceWM 2.9.7, Copyright 1997-2012 Marko Macek, 2001 Mathias Hasselmann.
Для его WM у него есть отличный, как оказалось, инструмент конфигурирования:
- screenshot3.jpg (39.07 КБ) 1162 просмотра
И ним нужно только "растянуть" заставку экрана ... и + выбрать на свой вкус, возможно:
- screenshot2.jpg (32.54 КБ) 1162 просмотра
Olej
-
Olej
- Писатель
- Сообщения: 21338
- Зарегистрирован: 24 сен 2011, 14:22
- Откуда: Харьков
-
Контактная информация:
Непрочитанное сообщение
Olej » 15 июл 2022, 16:52
Olej писал(а): ↑15 июл 2022, 16:44
Но я никогда не видел чтобы оно работало так странно (в отношении заставки)!
Olej писал(а): ↑15 июл 2022, 16:44
И ним нужно только "растянуть" заставку экрана ... и + выбрать на свой вкус, возможно:
И в итоге получаем то к чему стремились:
- screenshot.jpg (51.17 КБ) 1159 просмотров
Код: Выделить всё
$ xrandr
Screen 0: minimum 1 x 1, current 1503 x 947, maximum 8192 x 8192
Virtual1 connected primary 1503x947+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1503x947 60.00*+
2560x1600 59.99
1920x1440 60.00
1856x1392 60.00
1792x1344 60.00
1920x1200 59.88
1600x1200 60.00
1680x1050 59.95
1400x1050 59.98
1280x1024 60.02
1440x900 59.89
1280x960 60.00
1360x768 60.02
1280x800 59.81
1152x864 75.00
1280x768 59.87
1024x768 60.00
800x600 60.32
640x480 59.94
...
Olej
Сейчас этот форум просматривают: нет зарегистрированных пользователей и 0 гостей