关于“debian_8_php”的问题,小编就整理了【3】个相关介绍“debian_8_php”的解答:
debian系里我想修改一个文件结果权限不够怎么办,打开也不能修改,用的debian8?可以这样解决,先打开终端,然后输入以下命令:sudo apt-get install gksu之后可以使用 gksu 或 gksudo 启动你的编辑器,然后打开相应的文件,例如:gksu gedit运行时会提示输入root密码。
debian8.2安装mysql+apache+postfix应该怎么配置?配置全过程如下:
1. 为了让系统尽量使用最新的安装包,推荐在进行安装各软件前先apt-get update;apt-get upgrade一下。否则还有可能引起软件安装的兼容性问题,我遇到过几次在安装任何软件时均提示在安装过程中需先卸载e2fsprogs而安装失败的情形,最好只好强行删除该软件再进行下一步,由于该操作会同时删除系统中其它重要软件,应尽量避免。
2. 卸载Debian自带的exim4及相关软件包。
3. 安装postfix及相关软件: apt-get install postfix postfix-doc libsasl2 sasl2-bin courier-imap courier-pop courier-authdaemon
4. 开启saslauthd服务: 默认地saslauthd是不开启的,在运行/etc/init.d/saslauthd start后没有任何反应,需要修改/etc/default/saslauthd文件如下: START=yes MECHANISMS="shadow" 然后重新输入命令/etc/init.d/saslauthd start可以看到saslauthd服务开启的提示。
Debian系统下如何配置网络?1、设置IP地址、网关 cp /etc/network/interfaces /etc/network/interfaces.bak # 备份原有配置文件 vi /etc/network/interfaces # 编辑网网卡配置文件 # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 # 开机自动连接网络 allow-hotplug eth0 iface eth0 inet static # static表示使用固定ip,dhcp表述使用动态ip address 192.168.21.166 # 设置ip地址 netmask 255.255.255.0 # 设置子网掩码 gateway 192.168.21.2 # 设置网关 按 ESC 键,然后输入 :eq 保存并退出。 下面的版本便于复制, 因为配置文件里最好不要有中文: # The loopback network interface auto lo iface lo inet loopback # The primary network interface auto eth0 allow-hotplug eth0 iface eth0 inet static address 192.168.21.166 netmask 255.255.255.0 gateway 192.168.21.1 2、设置dns cp /etc/resolv.conf /etc/resolv.conf.bak # 备份原有dns配置文件 vi /etc/resolv.conf # 编辑配置文件 nameserver 127.0.0.1 nameserver 8.8.8.8 # 设置首选dns nameserver 8.8.4.4 # 设置备用dns 按 ESC 键,然后输入 :eq 保存并退出。 下面的版本便于复制, 因为配置文件里最好不要有中文: nameserver 127.0.0.1 nameserver 8.8.8.8 nameserver 8.8.4.4 3、重启网络 service networking restart # 重启网络 至此,IP地址、网关、DNS配置完成,现在系统已经可以上网了。
到此,以上就是小编对于“debian_8_php”的问题就介绍到这了,希望介绍关于“debian_8_php”的【3】点解答对大家有用。