- https://cwiki.apache.org/confluence/display/NETBEANS
- https://cwiki.apache.org/confluence/display/NETBEANS/Installation+of+Apache+NetBeans
- https://github.com/apache/incubator-netbeans/blob/master/README.md
- https://github.com/apache/incubator-netbeans/releases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1.0.0 1.0.1 | |
| trunk --------------------------------------------------------------- | |
| |svn copy | | |
| | | | |
| branches ---(develop)------- | | |
| 1.0.1-SNAPSHOT |svn move | | |
| | |svn merge --reintegrate | |
| tags ---(version fix)--- | |
| 1.0.1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module add --name=mariadb-java-client-1_1_7 --resources=/home/*****/Downloads/mariadb-java-client-1.1.7.jar --dependencies=javax.api,javax.transaction.api | |
| cd subsystem=datasources | |
| ./jdbc-driver=mariadb-java-client-1_1_7:add(driver-name=mariadb-java-client-1_1_7,driver-module-name=mariadb-java-client-1_1_7,driver-class-name=org.mariadb.jdbc.Driver) | |
| jdbc-driver-info | |
| data-source add --name=***** --connection-url=jdbc:mariadb://localhost:3306/?? --jndi-name=java:jboss/datasources/***** --driver-name=mariadb-java-client-1_1_7 | |
| data-source --name=***** --user-name=?? --password=?? | |
| cd ../ | |
| :reload | |
| cd subsystem=datasources | |
| data-source test-connection-in-pool --name=***** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| menu | |
| Settings | |
| System Settings | |
| Application Appearance | |
| Fonts | |
| Use anti-aliasing | |
| Enabled | |
| Configure | |
| User sub-pixel rendering RGB | |
| Hinting Style Full |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| function trap_exit() { | |
| test -f $$ && rm $$ | |
| } | |
| set -e | |
| trap "trap_exit" EXIT | |
| touch $$ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find . -type f -name pom.xml | xargs grep -E '<!--.*-->' | awk -F"pom.xml:" '{print $2}' | sed -e 's/^\s *//g' | sort | uniq | |
| # show cr | |
| find . -type f | xargs grep -lzUP '\r\n' | |
| # list '.*' directories size | |
| ls -a1 | grep -E ^\\. | grep -E .{3}+ | xargs du -sk | |
| # one liner looping | |
| while [ true ]; do ${COMMAND}; sleep 5; done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /¥¥*(?!¥¥+)/?([^/]|[^*]/)*¥¥*/ | |
| --(?!¥¥+).*?(?=(¥¥r|¥¥n)) | |
| '((?:(?:(?!').)?(?:(?:'')*')'|[^'])*)' | |
| ((?<%s>%s)|(?<%s>.*?(?=(%s|%s))|.+)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://docs.oracle.com/javase/8/docs/technotes/guides/install/install_overview.html | |
| wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/7u80-b15/jdk-7u80-linux-x64.rpm | |
| wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u65-b17/jdk-8u65-linux-x64.rpm | |
| wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8u66-b17/jdk-8u66-linux-x64.rpm | |
| ---------- | |
| sudo su - root | |
| sudo rpm -q -a | grep -E "^jdk.*" | |
| sudo rpm -e PACKAGE_NAME |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| volgroup00 | |
| disk-00.xxx | |
| : | |
| disk-0f.xxx | |
| / | |
| swap | |
| volgroup10 | |
| disk-10.xxx |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ll /dev/sd* | |
| fdisk /dev/sdd | |
| pvcreate /dev/sdd1 | |
| vgextend centos /dev/sdd1 | |
| lvextend -l +100%FREE /dev/centos/root | |
| xfs_growfs /dev/centos/root | |
| df -hT |
OlderNewer