https://linuxhint.com/install-kde-neon-oracle-virtualbox/
KDE Neon --- Derivative of Ubuntu Linux
Konsole ---- Transparent
https://linuxhint.com/install-kde-neon-oracle-virtualbox/
KDE Neon --- Derivative of Ubuntu Linux
Konsole ---- Transparent
tecmint.com/tmux-to-access-multiple-linux-terminals-inside-a-single-console/
https://askubuntu.com/questions/850055/ctrl-b-c-n-w-etc-not-working-in-tmux-console
https://ostechnix.com/tmux-command-examples-to-manage-multiple-terminal-sessions
tmux
ctrl+b and Shift+% ::: Split Vertically
ctrl+b and Shift+" ::: Split Horizontally
Type "exit" from a particular window To kill that window/screen
ctrl+b and d ::: End Session
for example, to create a new terminal hold ctrl+b and release it then press shift+5 (%)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.2</version> <executions> <execution> <id>copy-dependancies-to-libs</id> <phase>package</phase> <goals> <goal>copy-dependencies</goal> </goals> <configuration> <outputDirectory>${project.parent.basedir}/dependent-libs</outputDirectory> <overWriteReleases>false</overWriteReleases> <overWriteSnapshots>false</overWriteSnapshots> <overWriteIfNewer>true</overWriteIfNewer> </configuration> </execution> </executions> </plugin> |
https://support.sitecore.com/kb?id=kb_article_view&sysparm_article=KB0383441
docker cp <src-path> <container>:<dest-path>
kubectl cp <src-path> <your-pod-name>:<dest-path>
kubectl cp /data/ids_runtime_docker/DB_Script/IDS_Extraction_Application_Form_CS.tar mongodb-0:/tmp
https://zoomadmin.com/HowToInstall/UbuntuPackage/less
sudo apt-get install -y less
https://kubernetes.io/docs/reference/kubectl/cheatsheet/
kubectl logs my-pod -f
The commands we shall cover pertaining to this topic are:
https://www.tecmint.com/increase-ssh-connection-timeout/
/etc/ssh/sshd_config
ClientAliveInterval 1200 ClientAliveCountMax 3
The timeout value is given by the product of the above parameters i.e.
Timeout value = ClientAliveInterval * ClientAliveCountMax
For example, let’s say you have defined your parameters as shown:
ClientAliveInterval 1200 ClientAliveCountMax 3
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/approvals?view=azure-devops&tabs=check-pass