These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
This file contains hidden or 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/bash | |
| set -x | |
| # By Nick Semenkovich https://nick.semenkovich.com | |
| # | |
| # Largely derived from: | |
| # https://gist.github.com/kumbasar/49906cb704ce9213c972a3e008c74c0c | |
| # I found myself needing to update an Xbox S via USB (with the Offline System Update OSU1 patch) | |
| # See: https://support.xbox.com/en-US/help/hardware-network/console/system-update-solution/offline-system-update |
If wifi drivers are not installed during 1st boot up, it's likely that graphics and wifi drivers are not installed when you start your pc for the 1st time. First attach your pc with internet through ethernet cable in order to access internet during package installation. Do the following:
sudo apt install net-tools
ifconfig
It will show something like this:
arghya@arghya-Pulse-GL66-12UEK:~$ ifconfig
enp5s0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
This file contains hidden or 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
| @author LongCat (Pichaya Morimoto) | |
| -- Unlock bootloader | |
| Note: this will unlock bootloader & perform factory reset. | |
| 1. Prepare the device | |
| Remove all screen unlock methods. | |
| Enable Developer Mode: Settings > About phone > tap seven times on "Build number" | |
| Enable USB Debgging: Settings > Developer options > Select "USB debugging" | |
| Enable OEM Unlock: Settings > Developer options > Select "OEM unlocking" |
This file contains hidden or 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
| Assuming the username of the Ubuntu user is "ubuntu". | |
| Preparation | |
| ----------- | |
| ``` | |
| sudo apt-get update | |
| sudo apt-get upgrade | |
| sudo apt-get install mysql-server libmysqlclient-dev |