FreeBSD GitLab 설치
FreeBSD GitLab 설치

FreeBSD GitLab 설치     GitLab : https://about.gitlab.com/ Requirements : https://docs.gitlab.com/ce/install/requirements.html     locale 변경 locale 을 변경 하고 jail 에서 빠져나간후 다시 접속 하여 locale 을 확인 합니다. 이때 주의 할점은 :umask=022: 부분이 \ 를 추가 charset부분에도 \ 를 추가 해야 정상적으로 동작이 됩니다. git /root > vi /etc/login.conf :umask=022:\ :charset=ko_KR.UTF-8:\ :lang=ko_KR.UTF-8 git /root >... » read more

FreeBSD postgresql96-server install
FreeBSD postgresql96-server install

FreeBSD postgresql96-server install   FreeBSD Version : 11  Postgresql Version EOL 확인 https://www.postgresql.org/support/versioning/   Port install root@bsd11:~ # whereis postgresql96-server postgresql96-server: /usr/ports/databases/postgresql96-server root@bsd11:~ # cd /usr/ports/databases/postgresql96-server/ && make install clean   or pkg install root@bsd11:~ # pkg install postgresql96-server postgresql96-client   설치완료후 메세지 Installing postgresql96-server-9.6.10... ===> Creating groups. Creating group 'postgres' with gid '770'. ===>... » read more

FreeBSD synchronet(BBS) install
FreeBSD synchronet(BBS) install

FreeBSD Test Version 11.02 014XY 같은 BBS를 찾다 보니 Telnet 기반의 BBS Server 가 있어서 테스트 삼아 설치를 진행해 봤습니다. 단순한 설치 / telnet 접속 까지만 진행하며 그외 설정 파일을 구글링을 통하여 설정해 보시기 바랍니다. Synchronet 은 ports 로 제공되지 않습니다. wget 으로 Source 를 받아 와야 하며 의존성 패키지의 경우 pkg install 로 설치를... » read more

FreeBSD mkdocs 설치
FreeBSD mkdocs 설치

FreeBSD mkdocs 설치 mkdocs 소개  MkDocs is a fast, simple and downright gorgeous static site generator that's geared towards building project documentation. Documentation source files are written in Markdown, and configured with a single YAML configuration file. 참고페이지 : https://demun.github.io/mkdocs-tuts/#mkdocs    : https://www.mkdocs.org/#installation official site : https://www.mkdocs.org/ 사용법참고: https://demun.github.io/mkdocs-tuts/how/   mkdocs 설치 root@bsd11:~ # whereis py-mkdocs py-mkdocs: /usr/ports/textproc/py-mkdocs root@bsd11:~ # root@bsd11:~... » read more

FeeBSD locale 설정
FeeBSD locale 설정

FeeBSD locale 설정 site: https://www.freebsd.org/doc/handbook/using-localization.html   1./etc/login.conf 를 수정 하여 Global 설정을 변경 하는 방법 (모든 유저설정의 경우 설정) /etc/login.conf 를 수정 합니다.  root@bsd11:~ # vi /etc/login.conf me:\ :charset=ko_KR.UTF-8:\ :lang=ko_KR.UTF-8: root@bsd11:~ # cap_mkdb /etc/login.conf   재접속후 확인  root@bsd11:~ # locale LANG=ko_KR.UTF-8 LC_CTYPE="ko_KR.UTF-8" LC_COLLATE="ko_KR.UTF-8" LC_TIME="ko_KR.UTF-8" LC_NUMERIC="ko_KR.UTF-8" LC_MONETARY="ko_KR.UTF-8" LC_MESSAGES="ko_KR.UTF-8" LC_ALL= root@bsd11:~ #   일반유저도 동일하게 적용됩니다. 별도의... » read more

FreeBSD weechat irc Client install
FreeBSD weechat irc Client install

FreeBSD weechat irc Client install IRC Server 를 설치 하다 보니 weechat 을 오랜만에 설치 합니다. 심플하게 terminal 에서 irc 를 사용한다고 하면 weechat 이 좋을거 같습니다. gnome 이나 xfce Desktop 사용시에는 xirc 를 추천 합니다. 🙂 Linux irc Client 의 경우 https://www.tecmint.com/best-irc-clients-for-linux/ 사이트에서 가장 많이쓰는 irc client 를 확인할수 있습니다.   ports 로 weechat 설치 설치하다가... » read more

FreeBSD major update 11.1 -> 11.2 update
FreeBSD major update 11.1 -> 11.2 update

FreeBSD major update 11.1 -> 11.2 update make world 방법이 아닌 freebsd-update 를 이용한 방법 입니다. mkae world 의 경우 차후 포스팅 하도록 하겠습니다. 🙂 root@bsd11:~ # freebsd-update upgrade -r 11.2-RELEASE Looking up update.FreeBSD.org mirrors... none found. Fetching metadata signature for 11.1-RELEASE from update.FreeBSD.org... done. Fetching metadata index... done. Fetching 1 metadata files... done. Inspecting... » read more

[system] FreeBSD Z file system ZFS
[system] FreeBSD Z file system ZFS

FreeBSD Z file system ZFS 작성중인 문서 -- 2018.03.16 official site: https://www.freebsd.org/doc/handbook/zfs.html ZFS tuning : https://www.freebsd.org/doc/handbook/zfs-advanced.html ZFS 특징 및 용어 설명: https://www.freebsd.org/doc/handbook/zfs-term.html#zfs-term-vdev    Test 환경 kvm - FreeBSD11 / Disk VirtIO 3 Disk ZFS tuning point 의 경우 별도로 테스트 하도록 하겠습니다. 이번 포스트의 경우 FreeBSD 11 환경에서 ZFS 파일시스템만 초점을 맞추도록 하겠습니다. ZFS 테스트를 위하여 vm... » read more

[system] FreeBSD VirtIO
[system] FreeBSD VirtIO

FreeBSD VirtIO virtio 참고 : https://wiki.libvirt.org/page/Virtio So-called "full virtualization" is a nice feature because it allows you to run any operating system virtualized. However, it's slow because the hypervisor has to emulate actual physical devices such as RTL8139 network cards . This emulation is both complicated and inefficient. Virtio is a virtualization standard for network and... » read more

[system] FreeBSD Adding Disk
[system] FreeBSD Adding Disk

FreeBSD Adding Disk official site : https://www.freebsd.org/doc/handbook/disks-adding.html 자세한 내용은 FreeBSD handbook site 를 참고해 주세요. BSD 7~8 Version 에서 자주 사용하였던 sysinstall 은 BSD 11 Version 에서는 더이상 사용하지 않습니다. root@bsd11:~ # sysinstall sysinstall: Command not found. root@bsd11:~ #   BSD11 에서는 bsdinstall 을 사용합니다.  root@BSD11:~ # bsdinstall (Disk 추가 부분이 bsdinstall 에서 되는지 확인해보지... » read more