chmod +x /path/to/script.sh
/path/to/script
or
./script.sh
#include<stdio.h> | |
#include<stdlib.h> | |
#include<malloc.h> | |
//Creating custom function for buffer clean | |
void clean_stdin(void) | |
{ | |
int c; | |
do{ |
https://askubuntu.com/questions/966473/how-do-i-install-ndiswrapper-support-for-an-unsupported-rtl8723de-wireless-modul/988778#988778 | |
URL to fix Wifi error in Ubuntu 16.04 | |
https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/Developers/GettingStarted/API%20requests/curl-requests.htm#Sending | |
Send CRUD requests via curl |
If you have a .deb file and you want to install it in your Ubuntu Machine, just run the commands:
After this, if you get any error like : Errors were encountered while processing: FILE
just do
The above command tries to fix this broken package by installing the missing dependency.
The NERDTree is a file system explorer for the Vim editor. Using this plugin, users can visually browse complex directory hierarchies, quickly open files for reading or editing, and perform basic file system operations.
https://github.com/scrooloose/nerdtree
git clone https://github.com/scrooloose/nerdtree.git
mkdir ~/.vim
mv /path/to/nerdtree-master/* ~/.vim/
Esc
and then type : :NERDTree
and you are done!Esc
and type q
kibana-own-home
plugin in Kibana. (Note: This image of kibana is free [kibana-oss])own-home
plugin.docker run -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch:6.4.0
)FROM docker.elastic.co/kibana/kibana-oss:6.4.0
RUN bin/kibana-plugin install https://github.com/wtakase/kibana-own-home/releases/download/v6.4.0/own_home-6.4.0.zip
COPY kibana.yml ./config/kibana.yml
sudo apt-get install docker.io
sudo usermod -a -G docker $USER
reboot
curl -LO 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 mv ./kubectl /usr/local/bin/kubectl
http://ubuntuhandbook.org/index.php/2018/08/no-wifi-adapter-found-hp-laptops-ubuntu-18-04/ |
1. Set-up desired namespace as default if you want to work with it for longer period : |
---|
Edit your bashrc and add this lines:
i. vi ~/.bashrc
ii. Paste this and save:
alias ns='kubectl config set-context $(kubectl config current-context) --namespace'
iii. Restart terminal and use:
ns YOURNAMESPACE