Obsidian/Recognition/Programing/Linux/Linux 명령어/리눅스 OS 버전확인.md

13 lines
108 B
Markdown
Raw Permalink Normal View History

2023-08-14 16:19:25 +00:00
```Shell
# 커널 확인
uname -a
# OS 버전확인
cat /etc/issue
# bit수 확인
getconf LONG_BIT
```