標籤

BAT (38) shell (34) Virtual Machine (33) Xubuntu (29) acfs (25) PHP (24) CentOS (21) Virtul Box (20) 編輯器 (17) 資料庫 (15) lubuntu (13) windows (13) CPP (12) ubuntu (12) chrome (11) laravel (10) Docker (9) Python (9) 5A88 (7) VMware (6) 資料結構 (6) Javascript (5) Node (5) Proxmox VE (5) 公告系統 (5) 程式積木 (5) Android Studio (4) ANN (3) OB2D2016x64 (3) Xoops (3) clonezilla (3) samba (3) 公文 (3) 其他 (3) 硬體 (3) API (2) Android (2) AppInvent2 (2) Html (2) Hyper-V (2) Nas (2) botnet (2) mbot (2) swift (2) wordpress (2) 樣板 (2) 防火牆 (2) AD的應用 (1) Ansible (1) Arduino (1) CSS (1) GitLab (1) HA Proxy (1) LegoEV3 (1) PowerShell (1) Scratch (1) VM (1) XenServer (1) kotlin (1) linuxmint (1) lxc (1)

2017年5月25日 星期四

acfs 14.04.02 更新資源庫

1.到 https://repogen.simplylinux.ch/

2.選擇國家與ubuntu 版本,將所有選項勾選後,按下 Generate list

3.將下列的指令,複製貼到ubuntu 終端機,並下 sudo apt-get update

Sources List

curl https://repogen.simplylinux.ch/txt/trusty/sources_2ff7bd604d8a7f5b33227f5f91b28be87ee66f03.txt | sudo tee /etc/apt/sources.list

GPG Keys

curl https://repogen.simplylinux.ch/txt/trusty/gpg_2ff7bd604d8a7f5b33227f5f91b28be87ee66f03.txt | sudo tee /etc/apt/gpg_keys.txt

Alternate layout for synaptic

curl https://repogen.simplylinux.ch/txt/trusty/synaptic_2ff7bd604d8a7f5b33227f5f91b28be87ee66f03.txt | sudo tee /etc/apt/sources.list

2017年5月18日 星期四

acfs 12.04 x32 使用 samba 當作學校檔案伺服器

1.原本想在 acfs 14.04 x32 安裝SWAT,卻發現 acfs 14.04 x32 已經不支援SWAT。
資料來源:
installing SWAT on Ubuntu 14.04 LTS
https://ubuntuforums.org/showthread.php?t=2289150
所以改用 acfs 12.04 x32 ,卻發現可以用 SWAT,心中很開心。
遺憾的是,
卻無法在網頁http://伺服器IP:901上看到。


2.acfs 12.04 x32 目前從2012到2017,已經過五年了。遇到了一些問題。
$sudo apt-get update

W: GPG 錯誤: http://extras.ubuntu.com precise Release: 由於無法取得它們的公鑰,以下簽章無法進行驗證: NO_PUBKEY 16126D3A3E5C1192

解決方法為
$sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com  16126D3A3E5C1192


3.變更sources.list
   (1)備份原先的sources.list
   $sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
    (2)修改sources.list
   $sudo pico /etc/apt/sources.list
    (3) 加上下表所列的文字
deb http://ubuntu.stu.edu.tw/ubuntu/ precise main restricted

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise main restricted

deb http://ubuntu.stu.edu.tw/ubuntu/ precise-updates main restricted

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise-updates main restricted

deb http://ubuntu.stu.edu.tw/ubuntu/ precise universe

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise universe

deb http://ubuntu.stu.edu.tw/ubuntu/ precise-updates universe

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise-updates universe

deb http://ubuntu.stu.edu.tw/ubuntu/ precise multiverse

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise multiverse

deb http://ubuntu.stu.edu.tw/ubuntu/ precise-updates multiverse

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise-updates multiverse

deb http://ubuntu.stu.edu.tw/ubuntu/ precise-backports main restricted universe multiverse

deb-src http://ubuntu.stu.edu.tw/ubuntu/ precise-backports main restricted universe multiverse
 

    (4)執行更新
     $sudo apt-get update  

4.安裝 samba 伺服器
$sudo apt-get install samba

5.安裝SWAT (Samba Web Admin Tools)
$sudo apt-get install swat

6.安裝xinetd (啟動swat 的相關伺服器)
(1)$sudo apt-get install xinetd

(2)在xinetd 設定SWAT
$sudo pico /etc/xinetd.d/swat
加入如下的設定
# default: off
# description: SWAT is the Samba Web Admin Tool. Use swat \
#              to configure your Samba server. To use SWAT, \
#              connect to port 901 with your favorite web browser.
service swat
{
        port    = 901
        socket_type     = stream
        wait    = no
        # Use only_from if you want to restrict access
        # only_from = localhost
        user    = root
        server  = /usr/sbin/swat
        log_on_failure  += USERID
        disable = no
}

(3)儲存檔案後重新啟動xinetd.d:
$sudo /etc/init.d/xinetd restart
(4)開啟http://伺服器IP:901網頁瀏覽


7.安裝quota
(1)$sudo apt-get install quota

(2)查看硬碟
$df -h

(3)設定 quota
$sudo pico /etc/fstab
內容新增如下:
/dev/sda3       /home      ext4      defaults,usrquota,grpquota    1    1

(4)重心啟動
$sudo reboot now

(5)重新啟動後,可在/home 可看到兩個檔案aquota.group aqota.user
$ls

8.安裝 Webmin 與 usermin
$sudo -i
#echo "deb http://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list
#echo "deb http://webmin.mirror.somersettechsolutions.co.uk/repository sarge contrib" >>  /etc/apt/sources.list
#wget -q http://www.webmin.com/jcameron-key.asc -O- | apt-key add -
#apt-get update; apt-get install webmin -y

$sudo apt-get install usermin

9.在/home內,新增資料夾homework。並設定權限777
$sudo mkdir /home/homework
$sudo chmod 777 /home/homework

10.打開瀏覽器,並輸入 https://伺服器IP:10000 ,可看到
(1)登入

(2)設定繁體中文

(3)變更設定








(4)大量建置帳號

資料來源:
1.[筆記] 為套件庫來源加入認證公鑰
http://nelson.pixnet.net/blog/post/23983621-%5B%E7%AD%86%E8%A8%98%5D-%E7%82%BA%E5%A5%97%E4%BB%B6%E5%BA%AB%E4%BE%86%E6%BA%90%E5%8A%A0%E5%85%A5%E8%AA%8D%E8%AD%89%E5%85%AC%E9%91%B0

2.Ubuntu 修改伺服器來源
http://www.sres.tn.edu.tw/~hua/?p=65

2.Ubuntu 12.04 server 安装 webmin
https://imcn.me/html/y2012/11953.html

3.Ubuntu安裝samba-swat
http://www.coctec.com/docs/linux/show-post-128614.html

4.quota - 磁碟配額
http://note.drx.tw/2008/03/disk-quota.html

5.[筆記]在Ubuntu使用SWAT
http://david50.pixnet.net/blog/post/25990739-%5B%E7%AD%86%E8%A8%98%5D%E5%9C%A8ubuntu%E4%BD%BF%E7%94%A8swat

6.如何在Ubuntu Server 12.04中安裝和配置SWAT
https://askubuntu.com/questions/196272/how-to-install-and-configure-swat-in-ubuntu-server-12-04

7.Ubuntu Server 設定 Samba 分享檔案
http://www.arthurtoday.com/2015/04/ubuntu-server-share-folder-samba.html

8.鳥哥的Linux 私房菜-- SAMBA 伺服器
http://linux.vbird.org/linux_server/0370samba.php

9.大量建置帳號
http://kinhorse.666forum.com/t25-topic

2017年5月13日 星期六

在 acfs 14.04.02 x32 安裝 mongodb 的 GUI 工具 phpMoAdmin

原本想要在 ubuntu 16.04.02 x64 安裝 mongodb 的 GUI 工具 phpMoAdmin
所有指令如下:
$sudo apt-get install php-pear
$sudo pecl install mongo
$sudo pico /etc/php5/apache2/php.ini
新增一行    extension = php_mongo.so;
$sudo service apache2 restart
$wget http://www.phpmoadmin.com/file/phpmoadmin.zip
$unzip  phpmoadmin.zip
$sudo mv moadmin.php /var/www/html/
在瀏覽器網址 打上 http://伺服器IP/moadmin.php,即可看到
結果卻出現下列訊息
回到http://www.phpmoadmin.com/,發現

因此,改用acfs 14.04.02 x32 ,安裝 mongodb 的 GUI 工具 phpMoAdmin
卻發現實作時,又不一樣了
$sudo apt-get install php-pear

$sudo apt-get install php5-dev

$sudo pecl install mongo

$sudo pico /etc/php5/apache2/php.ini
新增一行    extension = php_mongo.so;
$sudo service apache2 restart


$wget http://www.phpmoadmin.com/file/phpmoadmin.zip
$unzip  phpmoadmin.zip
$sudo mv moadmin.php /var/www/html/

$sudo apt-get install mongodb-server

在瀏覽器網址 打上 http://伺服器IP/moadmin.php,即可看到
                                     



資料來源:
1.Mongodb的使用和管理工具 in ubuntu
http://www.itkeyword.com/doc/999845563533262543/php-ubuntu-phpmoadmin
2.phpMoAdmin - MongoDB GUI
http://www.phpmoadmin.com/
3.誰是最好的圖形化MongoDB管理工具
https://www.oschina.net/translate/which-is-the-best-mongodb-gui
4.MongoDB GUI 管理
http://clonn.blogspot.tw/2012/03/mongodb-phpmoadmin-gui.html
5.Review: 4 free, open source management GUIs For MongoDB
http://www.infoworld.com/article/2610945/nosql/review--4-free--open-source-management-guis-for-mongodb.html

在 Windows 10 x64 1909版,使用BAT快速安裝公文系統與人事服務網(自然人憑證)版

相關內容移往 https://skjhcreator.blogspot.com/2021/02/windows-10-x64-1909bat.html