Manjaro食用指南(3):工作相關
前言
這一篇安裝配置工作相關的軟體
Office
-
【Option 1】Manjaro 17.12版本自帶online的 MS office. 作為一個可選選項。
msoffice.PNG
-
【Option 2】 安裝WPS
[elluffn@manjaro nef_ft]$ yaourt wps 1 extra/libwps 0.4.10-1 a Microsoft Works file word processor format import filter library 2 community/bully 1.1.12.g04185d7-1 Retrieve WPA/WPA2 passphrase from a WPS enabled access point 3 community/gtk-theme-stylishdark 0.6-1 StylishDark Theme StylishDark-et, StylishDark-wpp and StylishDark-wps 4 community/pixiewps 1.4.2-1 Offline bruteforce of the WPS pin exploiting the low or non-existing entropy of some APs 5 community/wpscan 1:2.9.4-2 Black box WordPress vulnerability scanner 6 aur/pixiewps-git r26.08a78c3-1 (2) (0.01) Offline bruteforce of the WPS pin exploiting the low or non-existing entropy of some APs 7 aur/reaver-wps-fork-t6x 1.6.3-1 (8) (1.00) Brute force attack against Wifi Protected Setup mod with Pixie Dust Attack 8 aur/reaver-wps-fork-t6x-git 1.6.5.r224.140507a-1 (22) (0.06) reaver-wps-fork-t6x is a community forked version of reaver, which has included various bug fixes and additional attack method (the offline Pixie Dust attack). 9 aur/ttf-wps-fonts 1.0-3 (73) (4.57) Symbol fonts required by wps-office. 10 aur/ttf-wps-win10 1.0.0-2 (3) (0.93) Symbol fonts required by wps-office from Microsoft Windows 10 11 aur/wifite-mod-pixiewps-git 67.cb8a19e-3 (10) (0.00) A tool to attack multiple WEP and WPA encrypted networks at the same time mod with Pixie Dust Attack support 12 aur/wps-office 10.1.0.6757-1 (375) (5.39) Kingsoft Office (WPS Office) is an office productivity suite ..... ... ==> Enter n° of packages to be installed (e.g., 1 2 3 or 1-3) ==> --------------------------------------------------------- ==> 12 ==> Edit PKGBUILD ? [Y/n] ("A" to abort) ==> ------------------------------------ ==> n ==> Continue building wps-office ? [Y/n] ==> ------------------------------------ ==> y ==> Continue installing wps-office ? [Y/n] ==> [v]iew package contents [c]heck package with namcap ==> --------------------------------------------------- ==> y

wps.PNG
安裝 Skype for business 的linux替代軟體pidgin
Skype雖然有Linux版本,但是卻無法登陸 Skype for business。 在外企工作的朋友,肯定很鬱悶。好在Pidgin支援。
yaourt -S pidgin yaourt -S pidgin-sipe

pidgin_skype_biz.gif
安裝Docker
$ yaourt -S docker $ sudo systemctl enable docker $ sudo systemctl start docker $ sudo systemctl status docker ● docker.service - Docker Application Container Engine Loaded: loaded (/usr/lib/systemd/system/docker.service; enabled; vendor preset: disabled) Active: active (running) since Tue 2018-09-25 09:49:24 CST; 2 days ago Docs: https://docs.docker.com Main PID: 728 (dockerd) Tasks: 508 (limit: 4915) $ sudo docker info [sudo] password for xxxx: Containers: 62 Running: 55 Paused: 0 Stopped: 7 Images: 76 Server Version: 18.06.1-ce Storage Driver: overlay2 ...
安裝minikube
注意:下面用的是minikube github的指令碼安裝,不是yaourt.
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo cp minikube /usr/local/bin/ && rm minikube curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x kubectl && sudo cp kubectl /usr/local/bin/ && rm kubectl export MINIKUBE_WANTUPDATENOTIFICATION=false export MINIKUBE_WANTREPORTERRORPROMPT=false export MINIKUBE_HOME=$HOME export CHANGE_MINIKUBE_NONE_USER=true mkdir -p $HOME/.kube touch $HOME/.kube/config export KUBECONFIG=$HOME/.kube/config sudo -E minikube start --vm-driver=none # kubectl commands are now able to interact with Minikube cluster
$ kubectl get node NAMESTATUSROLESAGEVERSION minikubeReadymaster17dv1.10.0
安裝helm
$ curl https://raw.githubusercontent.com/helm/helm/master/scripts/get > get_helm.sh $ chmod 700 get_helm.sh $ ./get_helm.sh $ helm init $HELM_HOME has been configured at /home/elluffn/.helm. Warning: Tiller is already installed in the cluster. (Use --client-only to suppress this message, or --upgrade to upgrade Tiller to the current version.) Happy Helming!
gif 錄屏軟體 Peek
yaourt -S peek

Peek.gif
References:
- ofollow,noindex">https://docs.helm.sh/using_helm
- https://github.com/kubernetes/minikube