Last active
November 26, 2017 17:43
-
-
Save AldoMX/fc0d80f84ac97af41f97684d032aee7f to your computer and use it in GitHub Desktop.
Start services during WSL startup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
sudo service atd start | |
sudo service cron start | |
sudo service dbus start | |
sudo service irqbalance start | |
sudo service lvm2-lvmetad start | |
sudo service lvm2-lvmpolld start | |
sudo service mdadm start | |
sudo service ondemand start | |
sudo service rc.local start | |
sudo service rsync start | |
sudo service rsyslog start | |
sudo service unattended-upgrades start | |
sudo service uuidd start | |
sudo service webmin start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment