Rancher Desktop
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
sudo ln -s ~$USER/.rd/docker.sock /var/run/docker.sock
Less than 1 minute
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
sudo ln -s ~$USER/.rd/docker.sock /var/run/docker.sock
Unexpected device state 'Recovery' expected 'RestoreOS' (Probably caused by corruption or panic in the bundle's restored) [com.apple.MobileDevice.MobileRestore
– 0xFAD (4013)]
Swappiness controls how often the system uses swap space instead of RAM. A high swappiness value can lead to excessive swapping, slowing down your system.
To check the current swappiness value:
Guide
System Preferences
> Users & Groups
Login Items
tab and select the App that you want to remove from automatically opening during login.Now after restarting Mac, the app will not open automatically.
From Maven Central
to Local Nexus Repository
*.pom
in Local Nexus Repository
폴더명을 다음과 같이 변경
God Mode.{ED7BA470-8E54-465E-825C-99712043E01C}
명령어 | 설명 |
---|---|
WSReset.exe |
윈도우 스토어 캐쉬 삭제 |
Window Environment Setup
Fork is a function that is used to create a new proces.
pid_t child_pid;
child_pid = fork();
if (child_pid == 0) {
// Child process starts here
}
// Parent process resumes here