Category Archives: OS

Git Server 安裝

OS: Ubuntu 12.04 Desktop x64 安裝Gitlab + MySQL 系統更新 apt-get update apt-get upgrade -y apt-get dist-upgrade 安裝基本需求 update-alternatives –set editor /usr/bin/vim.basic sudo apt-get install -y build-essential zlib1g-dev libyaml-dev libssl-dev libgdbm-dev libreadline-dev libncurses5-dev libffi-dev curl openssh-server redis-server checkinstall libxml2-dev libxslt-dev libcurl4-openssl-dev … Continue reading

Posted in Git, Ubuntu | Leave a comment

Vim 7.4 Backspace失效

差一點因為backspace失效就要把好不容易裝起來的Vim 7.4移除掉改裝yum的rpm了……. 原來只要輸入 “set backspace=2” 就可以了 所以可以將這一行放到 ~/.vimrc 中就可以了

Posted in Linux | Leave a comment

Ubuntu Domain Name 設定

Ubuntu 的 domain name 設定不像以往 Centos直接修改 /etc/resolv.conf 即可, 因為重開機, 理面的值會不見 仔細看了一下, 在開頭的地方寫著: # Dynamic resolv.conf(5) file for glibc resolver(3) generated by resolvconf(8) # DO NOT EDIT THIS FILE BY HAND — YOUR CHANGES WILL BE OVERWRITTEN 所以我一直都再做白工…… 原來 Ubuntu 的 … Continue reading

Posted in Ubuntu | 1 Comment

Resize Virtual Disk – VMware ESXi 4.1 & CentOS 5.5 x86

使用vSphere Client登入調整硬體的設定,將硬碟空間增大 (由20G -> 80G) 將VM Guest重開機 以ssh登入VM Guest 輸入fdisk -l取得目前磁碟資訊 [root@localhost ~]# fdisk -l Disk /dev/sda: 85.8 GB, 85899345920 bytes 255 heads, 63 sectors/track, 10443 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Device Boot Start … Continue reading

Posted in CentOS, VMware | Leave a comment

取得網路時間 (非更新系統時間)

Source: http://superuser.com/questions/635020/how-to-know-current-time-from-internet-from-command-line-in-linux 方法1 $ nc time.nist.gov 13 # Both commands query the timer server on TCP port 13 of the National Institute of Standards and Technology and output the received data on stdout. nc 指令說明 This is nc from the … Continue reading

Posted in Linux | Leave a comment

Centos 看版本資訊

[root@p2p02 ~]# yum install redhat-lsb -y [root@p2p02 ~]# lsb_release -a LSB Version: :base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch Distributor ID: CentOS Description: CentOS release 6.5 (Final) Release: 6.5 Codename: Final

Posted in Linux | Leave a comment

MySQL 初始化設定

[root@localhost ~]# mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY! In order to log into MySQL to secure it, we’ll need the current password for the … Continue reading

Posted in Linux, MySQL | Leave a comment

Ubuntu 設定時區

dpkg-reconfigure tzdata

Posted in Ubuntu | Leave a comment

Openvpn logrotate.d 設定

編輯/etc/logrotate.d/openvpn vim /etc/logrotate.d/openvpn /var/log/openvpn/openvpn.log { daily #每日歸為一個log檔 rotate 99999999 #可以保存9999999個檔案 compress #壓縮檔案 dateext #以日期重新命名 postrotate /etc/init.d/openvpn reload endscript }

Posted in Linux, OpenVPN | Leave a comment

安裝Kamailio SIP Server

安裝環境: Ubuntu 12.04 x64 系統更新 apt-get update apt-get upgrade 安裝mysql-server及必要套件 apt-get install mysql-server apt-get install make flex bison libmysqlclient-dev 下載安裝檔案並產生設定檔 cd /tmp mkdir sip cd sip wget http://www.kamailio.org/pub/kamailio/latest/src/kamailio-4.1.3_src.tar.gz tar -zxvf kamailio-4.1.3_src.tar.gz cd kamailio-4.1.3 make cfg 加入mysql支援 vim modules.lst => include_modules= … Continue reading

Posted in Kamailio, Ubuntu | Leave a comment