目前分類:Linux (86)

瀏覽方式: 標題列表 簡短摘要

Objective

The objective is to install or replace existing PHP 5 with PHP 7 on CentOS 7 Linux server. As you will see, this procedure is fairly simple when using Remi Repository.

Requirements

Privileged access to your CentOS Linux system either directly as root user or via sudo command is required.

Difficulty

EASY

Felix 發表在 痞客邦 留言(0) 人氣()

資料庫太舊, 使用 pacman -Syy 更新一下就可以了


Felix 發表在 痞客邦 留言(0) 人氣()

大部分Linux發行版的默認賬戶是普通用戶,而更改系統文件或者執行某些命令,需要root身份才能進行,這就需要從當前用戶切換到root用戶,Linux中切換用戶的命令是su或su -,下面就su命令和su -命令最大的本質區別給大家詳解一下:  

前者只是切換了root身份,但Shell環境仍然是普通用戶的Shell;而後者連用戶和Shell環境一起切換成root身份了。只有切換了Shell環境才不會出現PATH環境變量錯誤。su切換成root用戶以後,pwd一下,發現工作目錄仍然是普通用戶的工作目錄;而用su -命令切換以後,工作目錄變成root的工作目錄了。用echo $PATH命令看一下su和su - 以後的環境變量有何不同。以此類推,要從當前用戶切換到其它用戶也一樣,應該使用su -命令。 

打個比方:在普通用戶下輸入:

Felix 發表在 痞客邦 留言(0) 人氣()

linux下打印錯誤報告 sudo tail /var/log/httpd/error_log

 

顯示如下錯誤:phpMyAdmin\libraries\php-gettext\gettext.inc on line 177Fatal error:

Felix 發表在 痞客邦 留言(0) 人氣()

很多第一次配置apache的虛擬主機的時候,以為配置第一個虛擬主機完成以後,以後就不會出現什麼問題了。

在配置第一個虛擬主機的時候,重啟apache的時候,都可能會遇到下面的問題:

Felix 發表在 痞客邦 留言(0) 人氣()

APPLIES TO:
  • Parallels Plesk Panel 11.0 for Linux
 
文章標籤

Felix 發表在 痞客邦 留言(0) 人氣()

How do I install and configure NTP under CentOS Linux version 5.x or 6.x server to synchronize the system clock?

You can easily install NTP (Network Time Protocol, a means of transmitting time signals over a computer network) using the yum command under Red Hat or CentOS/Fedora Linux server or workstation based systems. You need to install the following packages:

Tutorial details  
Difficulty Easy (rss)
Root privileges Yes
Requirements NTPD server
Estimated completion time 5m

 

Felix 發表在 痞客邦 留言(0) 人氣()

0 0 * * * [[ $(cal) = *$(date +%2d) ]] && [your script]


Felix 發表在 痞客邦 留言(2) 人氣()

Linux 某個目錄下的文件按大小排序

1. df -lh

Felix 發表在 痞客邦 留言(0) 人氣()

1. fdisk -l 查看硬盤情況

2. 開始分區

fdisk /dev/sdb

Felix 發表在 痞客邦 留言(0) 人氣()

.htaccess是什麼?.htaccess是在Apache HTTP Server這款服務器架設軟件下的一個對於系統目錄進行各種權限規則設置的一個文件,存在於Linux操作系統中。比較常見的是定義默認首頁名 稱,404頁面,301轉向,等等,還有更多的功能比如偽靜態,限製圖片外鏈,限制下載,密碼保護,去除頁面廣告等等,還有非常多的功能就不一一列舉。
  其實這些功能大多可以在cPanel控制面板來進行設置的(相當於是.htaccess的圖形化界面)。但對於高手來講,cPanel對於htaccess提供的功能還是太少了點,手工編輯才是王道。相對於國內的虛擬主機,絕大多數是沒有這個功能的
.htaccess是什么

Felix 發表在 痞客邦 留言(0) 人氣()

試了好久呀才才到全部答案~~

yum install ImageMagick

yum install ImageMagick-devel

Felix 發表在 痞客邦 留言(1) 人氣()

原來出自http://www.jasonlitka.com/yum-repository/

1. #  rpm --import http://www.jasonlitka.com/media/RPM-GPG-KEY-jlitka

2. 增加 /etc/yum.repos.d/utterramblings.repo , 並貼上以下內容

Felix 發表在 痞客邦 留言(0) 人氣()

Disable Direct Root Login

Allowing the root user to login directly is a major security issue, we'll show you how to disable it so you can still login as root but just not directly, reducing the security issue.

This will force a hacker to have to guess 2 seperate passwords to gain root access.

Felix 發表在 痞客邦 留言(0) 人氣()

CentOS-5.2 is based on the upstream release EL 5.2.0, and includes packages from all variants including Server and Client. All upstream 
repositories have been combined into one, to make it easier for end users to work with. And the option to further enable external
repositories at install time is now available in the installer. Please note that adding non distro repositories might impact system RAM

Felix 發表在 痞客邦 留言(0) 人氣()

Fedora 11新增了多項軟體、音效功能,以及虛擬化元件。

 
由紅帽(Red Hat)所支持的Fedora計畫宣佈,已完成最新版的Fedora 11開放源碼作業系統,其中新增了多項軟體、音效功能,以及虛擬化元件。同時,Red Hat還成立了社群入口網站Fedora Community計畫。

Felix 發表在 痞客邦 留言(0) 人氣()

Linux常用的压缩及解压缩命令如表2-5所示。

  表2-5 Linux常用的压缩及解压缩命令说明

常用命令

Felix 發表在 痞客邦 留言(1) 人氣()

/sbin/service crond start //启动服务
/sbin/service crond stop //关闭服务
/sbin/service crond restart //重启服务

Felix 發表在 痞客邦 留言(0) 人氣()

FTP命令是Internet用户使用最频繁的命令之一,不论是在DOS还是UNIX操作系统下使用FTP,都会遇到大量的FTP内部命令。 熟悉并灵活应用FTP的内部命令,可以大大方便使用者,并收到事半功倍之效。
FTP的命令行格式为: ftp -v -d -i -n -g [主机名] ,其中

  -v 显示远程服务器的所有响应信息;

Felix 發表在 痞客邦 留言(0) 人氣()

一、Linux中find常见用法示例

·find    path    -option    [    -print ]    [ -exec    -ok    command ]    {} \;
#-print 将查找到的文件输出到标准输出
#-exec    command    {} \;       -----将查到的文件执行command操作,{} 和 \;之间有空格

Felix 發表在 痞客邦 留言(0) 人氣()

1 2345