123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- https://servers.asus.com/support/os
- https://www.nvidia.com/ru-ru/geforce/drivers/
- https://wiki.manjaro.org/index.php/Configure_Graphics_Cards/ru
- https://linuxsimply.com/linux-change-permissions-on-mounted-drive/
- https://losst.pro/komanda-chmod-linux
- To open a Folder from terminal type the following, # https://askubuntu.com/questions/17062/how-to-open-a-directory-folder-and-a-url-through-terminal
- $>> nautilus /path/to/that/folder
- or
- $>> xdg-open /path/to/the/folder
- https://bonguides.com/black-screen-remote-desktop-to-ubuntu-from-windows-with-xrdp/ # Разлогинится на одном из устройств
- https://sky.pro/wiki/python/ogranichenie-vydeleniya-pamyati-gpu-v-tensor-flow-rukovodstvo/
- https://pingvinus.ru/program/mission-center
- Установка и настройка файлового сервера Samba на Ubuntu https://www.dmosk.ru/instruktions.php?object=samba-ubuntu
- $>> apt update
- $>> apt install samba
- Разрешаем автостарт сервиса:
- $>> systemctl enable smbd
- И проверим, что сервис запустился:
- $>> systemctl status smbd
- Проверяем, что сервер самба позволяет к себе подключиться. Для этого можно с компьютера обратиться к серверу по SMB, например, на компьютере с Windows это можно сделать из проводника, прописав путь к серверу с двух слэшей:
- Пример подключения к SMB шаре с компьютера на Windows \\192.168.1.15
- Если мы настроили сервер правильно, система откроет пустую папку. На данном этапе проверка закончена и мы можем переходить к созданию первой шары.
- $>> sudo nano /etc/samba/smb.conf
- И добавляем настройку для общей папки:
- [Общая папка]
- comment = Public Folder
- path = /data/public
- public = yes
- writable = yes
- read only = no
- guest ok = yes
- create mask = 0777
- directory mask = 0777
- force create mode = 0777
- force directory mode = 0777
- * где:
- [Общая папка] — имя общей папки, которое увидят пользователи, подключившись к серверу.
- comment — свой комментарий для удобства.
- path — путь на сервере, где будут храниться данные.
- public — для общего доступа. Установите в yes, если хотите, чтобы все могли работать с ресурсом.
- writable — разрешает запись в сетевую папку.
- read only — только для чтения. Установите no, если у пользователей должна быть возможность создавать папки и файлы.
- guest ok — разрешает доступ к папке гостевой учетной записи.
- create mask, directory mask, force create mode, force directory mode — при создании новой папки или файла назначаются указанные права. В нашем примере права будут полные.
- Создаем каталог на сервере и назначим права:
- $>> mkdir -p /data/public
- $>> chmod 777 /data/public
- Применяем настройки samba, перезагрузив сервис:
- $>> systemctl restart smbd
- How to Install XRDP on your Ubuntu 22.04 https://alexhost.com/faq/how-to-install-xrdp-on-your-ubuntu-22-04/
- $>> apt update
- $>> apt upgrade
- $>> apt install xrdp -y
- $>> systemctl enable xrdp
- $>> systemctl start xrdp
- You can also issue the following command to check the status of the application:
- $>> systemctl status xrdp
- The installer will create a new account named “xrdp”. The xrdp session uses the certificate key file “/etc/ssl/private/ssl-cert-snakeoil.key”, which is important for remote desktops.
- For everything to work correctly, add the xrdp user to the “ssl-cert” group. To do this you will be able to use the following command:
- $>> usermod -a -G ssl-cert xrdp
- Restart the Xrdp service by running the command given below:
- $>> systemctl restart xrdp
- Setting up the system firewall
- The XRDP application listens on standard remote desktop port 3389. Before using it, it is very necessary for you to configure your firewall to allow access to port 3389 for remote systems. To do this use the following command:
- $>> ufw allow from 192.168.1.0/24 to any port 3389
- After which you will receive a notification that the rule has been successfully updated
|