Epson L3110 в Ubuntu 20.04 LTS

Есть ли драйверы для этого принтера? Спасибо.

Сначала я загрузил универсальный драйвер с https://download.ebz.epson.net/dsc/search/01/search/searchModule . Зашел на терминал и выполнил указанную на сайте команду. Когда я попытался установить его, мой магазин программного обеспечения Ubuntu выскочил и дал мне сообщение об ошибке «Не удалось установить файл: не поддерживается. Снимок экрана с моим сообщением об ошибке Я запустил

apt-get install lsb

, как указано на сайте» .

epson-printer-utility_1.1.1-1lsb3.2_amd64.deb это файл, который я скачал.

Моя проблема в том, что когда приходят веб-пакеты, они получают сообщение «эта веб-страница не работает», и когда я подключаюсь к странице, она работает. Я уже пробовал переадресацию портов и настроил apache.

Вот так выглядит мой конфиг в apache

Config of my webserver

my webhub.network.conf :

<VirtualHost *:80>
    ServerName www.webhub.network
    ServerAlias webhub.network
    DocumentRoot /home/chris/Documents/homeserver/
    <Directory /home/chris/Documents/homeserver/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
    </Directory>
</VirtualHost>
0
задан 15 June 2020 в 23:31

1 ответ

The first line of webhub.network.conf file says, who can go to your webiste. Therefore I recommend you to repace it with:

<VirtualHost *:80>

That means you allow every client to connect with your webserver, if they can reach your port 80.

You can only have one ServerName. The other one you can use as ServerAlias. Src


Make sure, there is a link to webhub.network.conf in the sites-enabled folder (you can add the link automatically with a2ensite webhub.network.conf)

Make sure you set the portforwarding up in your router, so that everybody from the outside can connect to your prot 80.

If it does not work, you also may check that apache has the right to read and send the folder. For example add this code before . Src

<Directory /home/chris/Documents/homeserver/>
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    allow from all
</Directory>
0
ответ дан 19 June 2020 в 21:24

Другие вопросы по тегам:

Похожие вопросы: