Да, спасибо, уже понятнее. Прописал /etc/apt/sources.list
# Local package resource list for APT goes here.
# To inspect package defined part, see /etc/apt/sources.list.d/*.list
# rpm [alt] ftp://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/ i586 classic
# rpm [alt] ftp://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/ noarch classic
# rpm-src [alt] ftp://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/ i586 classic
rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/ i586 classic
rpm http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/ noarch classic
Команда apt-get update запустилась.
Также изменил /etc/nginx/nginx.conf
# see http://nginx.net for info & docs
worker_processes 10;
error_log /var/log/nginx/error.log;
events {
worker_connections 1024;
}
http {
proxy_temp_path /var/spool/nginx/tmp/proxy;
fastcgi_temp_path /var/spool/nginx/tmp/fastcgi;
client_body_temp_path /var/spool/nginx/tmp/client;
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
gzip on;
# text/html doesn't need to be defined there, it's compressed always
gzip_types text/plain text/css text/xml application/x-javascript application/atom+xml;
# gzip_comp_level 9;
server {
listen localhost:80;
# can't use wildcards in first server_name
server_name localhost localhost.localdomain;
location /altlinux/ {
root /var/www/;
error_page 404 = /fetch$uri;
error_page 403 = /fetch$uri;
}
location /fetch/altlinux/ {
internal;
proxy_pass http://ftp.altlinux.org/pub/distributions/ALTLinux/Sisyphus/i586/;
proxy_store /var/www/$request_uri;
}
internal;
proxy_pass http://ftp.altlinux.org/;
proxy_store /var/www/$request_uri;
# autoindex off;
# autoindex_exact_size on;
# autoindex_localtime off;
# expires off;
# cooperate with mod_realip in apache-1.3 or mod_rpaf in apache-2.x
# proxy_redirect off;
# proxy_set_header Host $host;
# proxy_set_header X-Real-IP $remote_addr;
# proxy_set_header X-Forwarded-For $remote_addr;
# proxy_pass http://back.end.addr.ess:80/;
#
# NB: it's better for URI canonicalization that apache sits on :80
# (even if that's only 127.0.0.1:80)
#
# see also set_real_ip_from, real_ip_header if this nginx
# would need to cooperate with another one acting as a frontend
}
# charset on;
# source_charset koi8-r;
access_log /var/log/nginx/access.log;
}
}
Далее
$ cd deluge
$ gear-hsh -- -v
Во время выполнения заново скачиваются все нужные пакеты для сборки и результат аналогичен:
error: failed dependencies:
libGL.so.1 is needed by libglitz-0.5.7-alt1
hsh-install: Packages installation failed.