2017年11月28日 星期二

在 Linux Mint 18.2 使用 swift 4.02 出現的問題



from: https://bugs.swift.org/browse/SR-3794

在 Linux Mint 18.2 使用 swift 4.02 執行 import Glibc 時,會顯示錯誤訊息, 表示它找不到 函數要 include 的來源位置, 可以用類似以下方式指定要 include 的函數位置,就可以解決了。

swift -I ~/apps/swift-4.0.2-RELEASE-ubuntu16.04/usr/lib/swift/clang/include/

後面的路徑,是 swift 解壓縮(或安裝)的資料夾位置。




2017年11月13日 星期一

工程師應該放心大膽地創造技術負債


ref source: https://medium.com/@p5d12000/%E5%B7%A5%E7%A8%8B%E5%B8%AB%E6%87%89%E8%A9%B2%E6%94%BE%E5%BF%83%E5%A4%A7%E8%86%BD%E5%9C%B0%E5%89%B5%E9%80%A0%E6%8A%80%E8%A1%93%E8%B2%A0%E5%82%B5-a8022d85810

這篇還滿特別的~~

2017年11月8日 星期三

Stop / remove / delete all Docker containers


ref source:
https://coderwall.com/p/ewk0mq/stop-remove-all-docker-containers
https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes

若要停止、移除、刪掉 Docker images 檔案,可以用以下方式處理:
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker rmi $(docker ps -a -q) 
 
 

How To install Docker in Linux Mint 18.2


source: http://budthapa.pro/blog/show/6/How-To-install-Docker-in-Linux-Mint-18.2



Docker for Linux Mint is availabe as a free Community Edition (CE). Installation is easy and straigh forward. We will install a stable release of docker.
OS Requirements
  • Linux Mint 18.2 (LTS)
  • Architecture: x86_64
If you've the older version installed already, uninstall it
$ sudo apt-get remove docker docker-engine docker.io
Add repositories
$ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
Since, Linux Mint 18.2 (sonya) is based on Ubuntu 16.04 (xenial), we've to use the release codename of Ubuntu 16.04 i.e. xenial. Also, we'll use the latest stable version
$ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu xenial stable"
If you are using Linux Mint 16 (petra), you've to use the release codename "trusty"
To check the release codename of you Linux Mint pc, In your terminal type:
lsb_release -rc
You'll see the release and codename printed in the terminal as
Release: 18.2
Codename: sonya
Now, update the pc
$ sudo apt update

Finally, we'll Install docker community version (CE) in Linux mint 18.2

$ sudo apt install docker-ce
Check if the docker is properly installed by typing
$ docker version
You'll get the output like this:
Client:
 Version:      17.06.2-ce
 API version:  1.30
 Go version:   go1.8.3
 Git commit:   cec0b72
 Built:        Tue Sep  5 20:00:17 2017
 OS/Arch:      linux/amd64

Server:
 Version:      17.06.2-ce
 API version:  1.30 (minimum version 1.12)
 Go version:   go1.8.3
 Git commit:   cec0b72
 Built:        Tue Sep  5 19:59:11 2017
 OS/Arch:      linux/amd64
 Experimental: false
 Running hello world in docker is easy, Just run
$ sudo docker run hello-world
You must be root user to use docker

Running docker command as non root user

If you are a single user and don't want to enter your password everytime while executing docker command, you have to add the current user in docker group.
$ sudo groupadd docker #this is most likely already created while installing docker
$ sudo gpasswd -a $USER docker
$ newgrp docker # you might need to logout if the changes are not working
$ docker run hello-world # check if docker is working without sudo