composer 2 install in windows 10
composer self-update --2
Here is what the above code is Doing:
1. Install the latest version of Composer.
2. Update the Composer version to 2.
composer self-update --2
Here is what the above code is Doing:
1. Install the latest version of Composer.
2. Update the Composer version to 2.
sudo apt install open-vm-tools-desktop Here is what the above code is Doing: 1. Install the open-vm-tools-desktop package. 2. Enable the open-vm-tools service. 3. Start the open-vm-tools service.
npm install -g vue npm install -g @vue/cli npm install @vue/cli-service -g Here is what the above code is Doing: 1. Installing the Vue CLI globally on your machine. 2. Installing the Vue CLI service globally on your machine. 3. Installing the Vue CLI service locally in your project.
create the repository on Github, clone the repo on your machine (git clone xx), copy the files, and push Here is what the above code is Doing: 1. Create a new repository on Github 2. Clone the repository on your machine 3. Copy the files from the current directory to the cloned repository 4. Push…
git push origin –force Here is what the above code is Doing: 1. git add . 2. git commit -m “message” 3. git push origin –force
rsync -avzh user@remote:/path/to/remote/folder /path/to/local/folder Here is what the above code is Doing: 1. rsync -avzh -a: archive mode; equals -rlptgoD (no -H,-A,-X) -v: increase verbosity -z: compress file data during the transfer -h: output numbers in a human-readable format 2. user@remote:/path/to/remote/folder user: the username on the remote machine remote: the name or IP address of…
$ lsof -nP -iTCP -sTCP:LISTEN | grep 8000 Here is what the above code is Doing: 1. lsof -nP -iTCP -sTCP:LISTEN -nP: Don’t resolve IP addresses or port names. -iTCP: Show only TCP connections. -sTCP:LISTEN: Show only listening TCP connections. 2. grep 8000 Filter the output to only show lines containing 8000.