Dell Optiplex 5090MT i7-10700 (내장그래픽) 모델
Ubuntu 18.04 설치시 아래를 따라했으나
https://www.dell.com/community/Optiplex-Desktops/Dual-boot-windows-and-Ubuntu-on-optiplex-5090/td-p/8040726
Black screen만 나옴.
20.04 설치로 해결 !
https://askubuntu.com/a/1341267
Dell Optiplex 5090MT i7-10700 (내장그래픽) 모델
Ubuntu 18.04 설치시 아래를 따라했으나
https://www.dell.com/community/Optiplex-Desktops/Dual-boot-windows-and-Ubuntu-on-optiplex-5090/td-p/8040726
Black screen만 나옴.
20.04 설치로 해결 !
https://askubuntu.com/a/1341267
An instance of an image is called a container. You have an image, which is a set of layers as you describe. If you start this image, you have a running container of this image. You can have many running containers of the same image.
You can see all your images with docker images whereas you can see your running containers with docker ps (and you can see all containers with docker ps -a).
So a running instance of an image is a container.
https://stackoverflow.com/a/23736802
Container ID is used as a hostname. See the image below:
/opt is for third-party applications that don't rely on any dependencies outside the scope of said package. /usr/local is for packages installed on this machine outside the scope of the distribution package manager.참조: https://askubuntu.com/a/34922/689555
I would install third-party binary-only packages to /opt.참조: https://askubuntu.com/a/34894/689555
Anything you build yourself from source I would put in /usr/local.
사용자 프로필의 경우 /usr/local/, 공유 사용자의 경우 /opt/참조: https://developer.android.com/studio/install
Ctrl + A Go to the beginning of the line you are currently typing onCtrl + E Go to the end of the line you are currently typing onCtrl + U Clears the line before cursor position (or the entire line if you are at the end of the line)Ctrl + H Alternative to using backspaceCtrl + W Delete the word before the cursorCtrl + K Clear the line after the cursorCtrl + T Swap the last two characters before the cursorEsc + T Swap the last two words before the cursorAlt + F Move cursor forward one word on the current lineAlt + B Move cursor backward one word on the current line# Error constructing proxy for org.gnome.Terminal:/org/gnome/Terminal/Factory0: Error calling StartServiceByName for org.gnome.Terminal: GDBus.Error:org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.gnome.Terminal': timed out (service_start_timeout=120000ms)
sudo ln -s /usr/lib/arm-linux-gnueabihf/libEGL.so.1.0.0 /usr/lib/libEGL.sosudo ln -s /usr/lib/arm-linux-gnueabihf/libGLESv2.so.2.0.0 /usr/lib/libGLESv2.sohttps://www.raspberrypi.org/forums/viewtopic.php?t=191857
pip freeze > requirements.txt
pip install -r requirements.txt
(server)$ jupyter notebook --no-browser --port=8888
(client)$ ssh -N -f -L localhost:8888:localhost:8888 user@ipaddress of server(client)$ open -a safari http://localhost:8888
(client)$ ssh -N -f -L localhost:8888:localhost:8888 user@ipaddress of server
ssh -N -f -L localhost:8888:localhost:8888 user@ip_address_server -p SSH_PORT_NUMBER