목록Linux (2)
mjk study log
Useful tip) always use "man" to find the options:man Web ServerTo connect to the internet from your computer, your browser needs to communicate to a web server over protocols like HTTP. How do we create web servers? - there are several methods:python3 -m http.server [port] # python 3 server# http web server with npmnpm install http-serverhttp-server -p [port]# http web server with phpphp -S [a..
Useful tip) always use "man" to find the options: man Package Management You might have used "apt install" or "apt update" to download files or update the versions. As you can assume, apt is the command to manage packages. Then what's the difference between the commands "dpkg"? APT apt stands for "advanced package manager" high-level command-line interface apt is a newer version of "apt-get" apt..