본문 바로가기

분류 전체보기840

[Certificate] Linux Master Level2 (220611_1-40) 1. Print 작업 System V - lp: Line Printer, 프린터 디바이스 path를 사용하여 직접 인쇄 - lpstat: 프린트 queue 상태 확인 - cancel: 프린트 작업 취소 BSD - lpr: Line Printer, 파일을 프린터로 인쇄하는 명령어 - lpq: Line Printer Queue, 프린터 인쇄 작업 목록인 Printer Queue 내용 출력 - lprm: Printer Queue 작업 삭제 - lpc: Printer가 인쇄 가능 상태인지 확인 2. LPRng: Line Printer Next Generation, 리눅스에서 프린터를 지원해주는 인쇄 시스템 ALSA: Advanced Linux Sound Architecture, 사운드 카드용 장치 드라이버를 제.. 2023. 2. 19.
[Certificate] Linux Master Level2 (220903_41-80) 41. chgrp: 파일이나 dir 소유그룹 변경 chmod: 파일이나 dir mode 변경 -R: 해당 dir 및 하위 dir까지 변경 42. fsck: file system check, 파일 시스템을 검사하고 수리하는 명령어 e2fsck: linus file system인 ext2, ext3, ext4를 검사하고 수리하는 명령어로 현재 리눅스 배포판에서 fsck 명령 실행 시 실제 사용되는 명령 mkfs: make file system, 새로운 파일 시스템을 만듦 xfs_repair: xfs file system의 검사 및 복구 43. fdisk: disk partitioning status 확인 44. chmod 명령어 u,g,o,a : 소유자(u), 그룹(g), 그 외 사용자(o), 모든 사용자(.. 2023. 2. 19.
[Certificate] Linux Master Level2 (220903_1-40) 1. lp /etc/passwd: /etc/passwd 출력 lpc: line printer controller, printer or pinter queue 제어 lpstat: line printer state, 큐 상태 출력 lprm: line printer remove, 큐에 대기중인 작업 삭제 2. System V: lp, lpstat, cancel BSD: lpr, lpc, lpq, lprm 4. OSS: Open Sound System, 리눅스 및 유닉스 운영체제에서 사운드를 만들고 캡처하기 위한 인터페이스, Hannu 개발 ALSA: Advanced Linux Sound Architecture, 리눅스에서 기본적으로 지원되지 않는 사운드카드를 잡을 수 있게 지원하는 드라이버, Jaroslav .. 2023. 2. 18.
[해결 방법] java.io.InvalidClassException ☕ 기본 환경: IDE: Eclipse, Language: Java 발생 Exception Java에서 다음 Source Code를 실행할 경우, package member; import java.io.Serializable; public class MemberDTO implements Comparable, Serializable { private String name; private int age; private String phone_num; private String address; public MemberDTO() {} public MemberDTO(String name, int age, String phone_num, String address) { this.name = name; this.ag.. 2023. 2. 17.
[해결 방법] java.io.NotSerializableException ☕ 기본 환경: IDE: Eclipse, Language: Java 발생 Exception Java에서 다음 Source Code를 실행할 경우, package io; import java.io.FileOutputStream; import java.io.ObjectOutputStream; import java.io.IOException; public class ObjectMain { public static void main(String[] args) throws IOException { PersonDTO pDTO = new PersonDTO("홍길동", 25, 185.3); ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream("re.. 2023. 2. 17.
[해결 방법] java.util.IllegalFormatPrecisionException ☕ 기본 환경: IDE: Eclipse, Language: Java 발생 Exception Java에서 다음 Source Code를 실행할 경우, public class StrFormat { public static void main(String[] args) { double d = 2.3; System.out.println(String.format("%.2d", d)); } } ⭐ java.util.IllegalFormatPrecisionException: 2 발생 Exception 원인 String.format: %d: 10진수 int type int type data format으로 doubloe or float type data로 표현하고자 함 해결 방법 1. 실수 type data format으.. 2023. 2. 17.