- iPXE
- HTTP server (or a TFTP server)
- iSCSI target
- Windows 10 ISO file
- A client that can boot via PXE
- Windows 10 installation iso
- Windows ADK - https://docs.microsoft.com/en-us/windows-hardware/get-started/adk-install
- VirtIO windows drivers iso - https://github.com/virtio-win/virtio-win-pkg-scripts/blob/master/README.md
- Extract the
boot.wim(to a location easily accessible, C:\Temp) from windows installation media. It should be located at thesourcesdirectory inside the iso file. - Open Deployment and Imaging Tools Environment as administrator. If you don't see this is your program list then you probably don't have Windows ADK installed or you didn't include the neccessary components during 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 | |
| # Absolute path of docker systemd file | |
| dockersystemd='/lib/systemd/system/docker.service' | |
| # Retrieve the line number of the ExecStart | |
| execstartline=$(grep -n 'ExecStart=' ${dockersystemd} | cut -f1 -d':') | |
| # New value of the ExecStart | |
| newexecstart='ExecStart=/usr/bin/dockerd -H fd:// -H=tcp://0.0.0.0:2375 --containerd=/run/containerd/containerd.sock' |
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
| # Tested on Debian Buster | |
| # Install | |
| apt-get install linux-headers-$(uname -r) | |
| apt-get install build-essential | |
| # Compile bpctl | |
| # Use https://github.com/redBorder/bpctl if you're able to, otherwise download directly from Silicom | |
| curl -O https://www.silicom-usa.com/download/?action=ftp://drivers:all@silicom.ftptoday.com/drivers/PxGxBP-SD_Linux.zip | |
| unzip PxGxBP-SD_Linux.zip |
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
| # Main | |
| rtsp://user:pass@ip:554/streaming/channels/101 | |
| # Sub | |
| rtsp://user:pass@ip:554/streaming/channels/102 | |
| # H264 | |
| rtsp://user:pass@ip:554/h264_stream | |
| rtsp://user:pass@ip:554/H264/ch1/main/av_stream | |
| rtsp://user:pass@ip:554/H264/ch1/sub/av_stream |