壓縮path:
tar zcvf output.tar.gz path
# 使用變數
D=dir1 && tar zcvf ${D}.tar.gz ${D}
解壓縮目前的資料夾:
tar zxvf input.tar.gz
壓縮path:
tar zcvf output.tar.gz path
# 使用變數
D=dir1 && tar zcvf ${D}.tar.gz ${D}
解壓縮目前的資料夾:
tar zxvf input.tar.gz
使用brew安裝
brew install pkg-config sdl2 sdl2_image sdl2_ttf sdl2_mixer gstreamer
sudo easy_install pip
sudo pip install Cython==0.26.1
pip install --user --verbose https://github.com/kivy/kivy/zipball/master
參考網址:
https://kivy.org/docs/installation/installation-osx.html
https://github.com/kivy/kivy/issues/5473#issuecomment-342073144
目前 raspberry pi 2017-11-29-raspbian-stretch 跟 docker 17.11.0會出現 cgroups: memory cgroup not supported on this system
之錯誤
所以暫時解決的辦法是將docker降到17.09.0
sudo apt-get remove -y docker-ce
sudo apt install -y docker-ce=17.09.0~ce-0~raspbian
sudo apt-mark hold docker-ce
等之後問題解決了就可以用下列指令解鎖,並升級
sudo apt-mark unhold docker-ce
sudo apt-get upgrade -y
在raspberry pi上安裝好NOOBS,
可透過下列指令直接安裝docker(ps: sudo預設也不需要密碼)
curl -sSL https://get.docker.com | sh
接著將pi使用者加入docker群組
可透過下列指令直接安裝docker(ps: sudo預設也不需要密碼)
sudo usermod -aG docker pi
最後重新登入就可以用docker了