최신글
- Java Programming maven settings.xml D:/Dev/eGovFrameDev-3.7.0-64bit/maven_repository_3_7/repository
-
Windows
윈도우 10 시리얼 확인하는 방법
reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SoftwareProtectionPlatform" /v BackupProductKeyDefault
-
React-Native
error An error occured while trying to install CocoaPods, which is required by this template.
sudo xcode-select --switch /Applications/Xcode.app sudo gem install activesupport -v 6.1.7.4 sudo gem install cocoapods
- React-Native TypeError: cli.init is not a function npm uninstall -g react-native-cli npm install -g react-native-cli npm install -g react-native
- React-Native Error: Command failed: npm install --save --save-exact react-native sudo npm cache clean --force sudo npm install --global yarn
-
IBM AIX AIX 커널 모드 (32->64, 64->32) 변경법, AIX 커널 확인 AIX 하드웨어 bit 확인 # bootinfo -y AIX 커널 bit 확인 # bootinfo -K 시스템 정보 보기 # prtconf | head 커널 모드 변경 32 bit -> 64 bit # ln -sf /usr/lib/boot/unix_64/unix # ln -sf /usr/lib/boot/unix_64/usr/lib/boot/unix # bosboot -ad /dev/ipldevice # shutdown -r 64 bit -> 32 bit # ln -sf /usr/lib/boot/unix_mp/unix # ln -sf /usr/lib/boot/unix_mp/usr/lib/boot/unix # bosboot -ad /dev/ipldevice # shutdown -r -
Utility Fasta~Ping -v1.31 패스트핑 1.31 무설치 버전 -
Java Programming JAVA 디렉토리 목록 리스트파일로 만들기 예제 import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.util.ArrayList; class FileList { static long totalFiles = 0; static long totalDirs = 0; public static void main(String[] args) { File backF = new File("D:\\back.lst"); if(!backF.exists()){ System.out.println("파일이 없습니다.");..