一、安裝apahcehtml
apt-get install apache2web
二、默認網站根目錄apache
Apache的安裝路徑爲/varubuntu
默認的網站根目錄的路徑爲/var/www/htmlvim
三、配置apache自啓動瀏覽器
Apache2.conf 位置: /etc/apache2/apache2.confide
vim /etc/apache2/apache2.conf網站
在打開的apache2.conf文件尾部添加以下信息:ui
#ServerNamerest
ServerName [ip地址]
四、重啓apache
目錄:/etc/init.d/apache2 restart
./apache2 restart
五、重啓電腦,檢測服務可否自啓動;本機訪問
瀏覽器輸 http:[以前配置的ip地址] 回車以後看到
配置基於http的包更新源
一、在終端窗口中輸入"sudo vi /etc/apache2/apache2.conf" ,回車,找到"<Directory /var/www/>"的位置,更改"/var/www/"爲新的根目錄就能夠了
<Directory />
Options FollowSymLinks
AllowOverride None
Require all denied
</Directory>
<Directory /usr/share>
AllowOverride None
Require all granted
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
2,在終端窗口中輸入"sudo vi /etc/apache2/sites-available/000-default.conf"-->回車-->找到"DocumentRoot /var/www/html"的位置-->更改"/var/www/html"爲新的根目錄就能夠了,這裏我把它更改成"/var/www/" 或者也能夠本身新建一個repo_server.conf,裏面配置以下:
<VirtualHost :28000>
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /var/www/repo
<Directory '/var/www/repo'>
Options Includes FollowSymLinks MultiViews
AllowOverride None
Require all granted
</Directory>
ErrorLog /var/log/apache2/repo_server-error.log
CustomLog /var/log/apache2/repo_server.log common
</VirtualHost>
注:repo下要拷貝iso上的dists目錄過來
三、配置端口
在/etc/apache2/ports.conf
輸入Listen :28000
保存退出
第六步:重啓Apache:
在終端窗口中輸入"sudo /etc/init.d/apache2 restart" 回車,輸入root用戶密碼,回車,重啓成功
客戶端配置
一、找到/etc/apt/sources.list
二、輸入deb [arch=amd64] http://11.11.177.72:28000 (dists)ngiam main三、保存退出便可