Questions tagged «debian»

Debian是一种流行且有影响力的GNU / Linux发行版。这里的问题通常应该与Debian Server有关。

4
在安装Debian软件包时禁用提示
我如何完全禁用安装Debian软件包时出现的提示,我使用了已找到的所有选项,但仍有一些软件包在提示。 我正在使用以下命令: apt-get -y --allow-unauthenticated --force-yes -o DPkg::Options::="--force-overwrite" -o DPkg::Options::="--force-confdef" install x11-common 为什么x11-common包仍然提示?我如何摆脱这些提示? 提前致谢 - 胜利者 编辑:只是为了澄清,提示不是“是/否”提示,是在彩色屏幕(典型的两种颜色的屏幕)中打开的问题,但我想设置这些问题的默认选项




3
Debian:如何在启动时运行脚本而无需编写30行shell脚本?
我有一个Debian服务器,我只需要在启动时运行脚本即可。 我读到的是:https : //www.debian-administration.org/article/28/Making_scripts_run_at_boot_time_with_Debian 我现在得到:insserv:警告:脚本'缺少LSB标签和替代 所以看起来我现在必须添加: ### BEGIN INIT INFO # Provides: scriptname # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start daemon at boot time # Description: Enable service provided by daemon. ### END INIT INFO …

8
dpkg:警告:软件包“ x”的文件列表文件丢失
每次安装或执行任何软件包时,都会收到针对多个软件包的警告apt-get upgrade。不知道是什么原因造成的;这是在我的OpenVZ服务器上全新安装的Debian,并且我没有更改任何dpkg设置。 这是一个例子: root@debian:~# apt-get install cowsay Reading package lists... Done Building dependency tree Reading state information... Done Suggested packages: filters The following NEW packages will be installed: cowsay 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 21.9 kB of archives. After this …
20 debian  apt  dpkg 

4
ssh远程命令的$ PATH为什么与交互式shell的$ PATH不同?
我有一个用户未对任何点文件中的$ PATH进行任何修改:这正是系统默认设置。从登录shell: $ ssh example.com user@example.com:~$ cat /tmp/hello.hs #!/bin/bash echo "$SHELL" echo "$PATH" user@example.com:~$ /tmp/hello.hs /bin/bash /usr/local/bin:/usr/bin:/bin 完全符合中的规定/etc/profile。我觉得这很意外: $ ssh example.com '/tmp/hello.sh' /bin/bash /usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/games 就像我说的,有一个在$ PATH的任何修改~/.bashrc,也不在/etc/bash.bashrc。无~/.ssh/environment任。该ssh(1)声明环境变量PATH是 设置为默认PATH,如编译ssh时所指定。 但是来自StackOverflow的该线程和此邮件列表文章建议我只需修改/ etc / profile,shell启动文件之一等,就应该能够影响给定命令的$ PATH。 这里发生了什么?
20 ssh  debian  bash 

2
如何在未由dpkg安装或创建的Debian系统中查找文件?
过去,我已经手动安装了一些东西,并希望清除所有相关文件。因此,我需要一种方法来自动查找Debian系统上当前安装的任何软件包中未包含的所有文件(例如,在/ usr中)。但是,我还需要过滤出在软件包安装过程中创建的文件(通过dpkg安装后脚本和类似内容)。
20 debian  apt  find  uninstall  dpkg 

10
管理数百台Debian服务器上的升级
您认为保持数十个(甚至数百个)debian服务器最新的最佳实践是什么?请记住: 有服务器组(即,相同的Web服务器,DB服务器等) 可能有几个Debian问题(lenny,etch) 在所有服务器上运行循环并进行apt-get update &&升级是不可接受的(因为这是我目前正在做的事情:))这应该比这更好! 当前,当我最终完成所有升级时,将发布一个新的安全更新,而我必须重新做一遍。 在此先感谢serverfault社区!
20 linux  debian  apt 

5
如何chroot ssh连接?
我想为大多数(不是全部)通过SSH登录的用户设置chroot监狱。我听说过最新版本的openssh是可能的,但是我还没有找到如何做的方法。“如何做”全都在谈论修补旧版本,并且该修补程序不再可用。 我正在运行debian etch。
20 security  ssh  debian  chroot 


7
使用自动脚本设置时区
我正在编写脚本来自动设置新的slicehost安装。在理想的情况下,启动脚本后,脚本便会运行,而不会引起我的注意。我成功了,除了一个例外。 我该如何设置时区,以永久性(紧急重启)和健全(调整标准时间和夏令时,这样就不仅仅强迫日期了)……不需要我输入的方式? 目前,我正在使用 dpkg-reconfigure tzdata 这似乎没有任何强制参数的方法。需要用户输入。 编辑:我在这里编辑,而不是注释,因为注释似乎不允许使用代码块。 根据下面的Rudedog的评论,这是我最终得到的实际代码。我还注意到这不会更新/ etc / timezone。我不确定是谁使用的,但是如果有人使用,我也要设置。 TIMEZONE="America/Los_Angeles" echo $TIMEZONE > /etc/timezone cp /usr/share/zoneinfo/${TIMEZONE} /etc/localtime # This sets the time

6
无法SSH到GCE:“权限被拒绝(公钥)”
我通过Google Compute Engine中的Bitnami创建了一个VM。以前,我能够通过Bitnami Web界面进行ssh。我试图通过Mac上的终端ssh进行操作,但始终收到Permission denied (publickey)错误消息。然后,我删除了服务器和Mac上的所有密钥,并从bitnami下载了pem文件,并使用了-i选项进行连接,但问题仍然存在。 ssh -i bitnami-gce.pem xxx@1xx.1xx.5x.1xx -v 完整的调试信息: OpenSSH_6.2p2, OSSLShim 0.9.8r 8 Dec 2011 debug1: Reading configuration data /etc/ssh_config debug1: /etc/ssh_config line 20: Applying options for * debug1: Connecting to 1xx.1xx.5x.1xx [1xx.1xx.5x.1xx] port 22. debug1: Connection established. debug1: identity file bitnami-gce.pem type -1 debug1: identity file …

3
如何为Debian Jessie系统设置主机名?
Debian Jessie附带了systemd。设置主机名的建议是将hostnamectl用于systemd。但是,此命令在EC2上引导的Debian Jessie 映像上不起作用(甚至不显示当前主机名): sudo hostnamectl sudo: unable to resolve host ip-172-30-0-17 Failed to create bus connection: No such file or directory 所以我试图在这里继续Debian的建议。 echo "myhostname" > /etc/hostname echo "127.0.0.1 myhostname" >> /etc/hosts /etc/init.d/hostname.sh start /etc/init.d/networking force-reload 但是,注销并再次登录后,主机名不会更改。但是,它在重新启动后确实会更改,但这对我来说并不理想。 这种方法曾经在Debian Wheezy中起作用。 感谢您提供帮助,以解决此问题。

2
ia32-libs:取决于:ia32-libs-i386,但它不可安装
我试图ia32-libs在我的Debian x86_64盒子上安装(依赖项来构建VirtualBox源代码),但是它给了我错误: The following packages have unmet dependencies: ia32-libs : Depends: ia32-libs-i386 but it is not installable E: Unable to correct problems, you have held broken packages. 自然,我继续尝试安装ia32-libs-i386,但是遇到另一个错误: Package ia32-libs-i386 is not available, but is referred to by another package. This may mean that the package is missing, has been …

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.