How I can turn off HyperV Container features so that I can use Virtual Box and then turn them back on to use Docker for Windows
You can do below to disable:
dism.exe /Online /Disable-Feature:Microsoft-Hyper-V
bcdedit /set hypervisorlaunchtype off
Show processes:
ps -afx
Killing a process:
kill -INT prcess_id
Viewing active connections:
Linux list all users command | |
$ cat /etc/passwd |
#Heading 1 | |
##Heading 2 | |
###Heading 3 | |
####Heading 4 | |
#####Heading 5 | |
######Heading 6 | |
--- | |
Paragraph |
Docker | |
------------------------- | |
Se lanciando | |
> docker images | |
o | |
> docker-compose up --build | |
dà questo errore: |
<? header("location: http://www.my_site.ext"); ?> |
UPDATE for rails 3.2.12: | |
db:create creates the database for the current env | |
db:create:all creates the databases for all envs | |
db:drop drops the database for the current env | |
db:drop:all drops the databases for all envs | |
db:migrate runs migrations for the current env that have not run yet | |
db:migrate:up runs one specific migration | |
db:migrate:down rolls back one specific migration | |
db:migrate:status shows current migration status |
insecure content fixer | |
https://it.wordpress.org/plugins/ssl-insecure-content-fixer/ |
# show all active connections | |
netstat -napt |