aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | | Merge pull request #532 from arifulislamat/patch-1sickcodes2022-11-091-1/+1
|\ \ \
| * | | Typing mistake correctionAriful Islam2022-08-201-1/+1
| | | | | | | | | | | | it's should be "experience" not "experiencem"
* | | | Merge pull request #551 from aaronjamt/patch-1sickcodes2022-11-091-0/+3
|\ \ \ \ | |_|_|/ |/| | |
| * | | Fix issue with invalid GPG keys in VNC versionAaronjamt2022-10-211-0/+3
| | |/ | |/| | | | | | | | | | | | | | | | | | | Without this, `pacman` gives the following errors when trying to update packages as part of the installation: * The first error is `error: pambase: key "991F6E3F0765CF6295888586139B09DA5BF0D338" is unknown` * This is followed by a bunch of errors similar to (but with different filenames): `:: File /var/cache/pacman/pkg/pambase-20221020-1-any.pkg.tar.zst is corrupted (invalid or corrupted package (PGP signature)). Do you want to delete it? [Y/n]` * These are followed by `error: libvpx: key "95220BE99CE6FF778AE0DC670F65C7D881506130" is unknown` * Finally, it ends with `error: failed to commit transaction (invalid or corrupted package)` and `Errors occurred, no packages were upgraded.` before exiting with code `1`. This `RUN` command will update the `archlinux-keyring` package to get the latest keys, then remove and regenerate all gnupg keys inside the container. This allows `pacman` to accept the GPG keys and resolves the above error.
* / | Add venturasickcodes2022-11-091-0/+1
|/ /
* | Merge pull request #538 from TartanLeGrand/mastersickcodes2022-09-124-6/+12
|\ \ | |/ |/| sshpass install and label
| * fix: sshpass install and labelUgo Mignon2022-09-014-6/+12
|/
* Fixes #510 missing keyserverssickcodes2022-07-041-0/+4
|
* Fixes #485sickcodes2022-05-141-2/+2
|
* Merge pull request #495 from jonathanweinberg/patch-1sickcodes2022-05-141-2/+1
|\ | | | | Additional information about .wslconfig
| * Additional information about .wslconfigJonathan Weinberg2022-05-091-2/+1
| | | | | | From official MS documentation around `.wslconfig`. Link also has some interesting reading about the `8 second rule` regarding changes not really being made to configs until about 8 seconds after *all* the instance of a distro are shut down. Might be good for some troubleshooting issues with wsl configs not "sticking".
* | Share files, shared folder, mount foldersickcodes2022-05-141-2/+16
|/ | | | | | | | | | | # Share directories, sharing files, shared folder, mount folder The easiest and most secure way is `sshfs` ```bash # on Linux/Windows mkdir ~/mnt/osx sshfs user@localhost:/ -p 50922 ~/mnt/osx # wait a few seconds, and ~/mnt/osx will have full rootfs mounted over ssh, and in userspace # automated: sshpass -p <password> sshfs user@localhost:/ -p 50922 ~/mnt/osx ```
* Fixes #495sickcodes2022-04-211-2/+2
|
* Recognize. Add new legends to credits.sickcodes2022-04-171-1/+9
| | | | | | | | | | | [@kimjammer](https://github.com/kimjammer) Update Windows Installation section #422 [@Mhartig](https://github.com/Mhartig) - Worked out issue `Enter a number (default=1): error: invalid number: y` [@felipestt](https://github.com/felipestt) Use more CPU Cores/SMP' broken #440 [@routmoute](https://github.com/routmoute) README: add PulseAudio with WSLg #442 [@dulatello08](https://github.com/dulatello08) Update README.md #452
* Fix #440sickcodes2022-04-141-5/+7
| | | | | | | | | > According to [this](https://github.com/foxlet/macOS-Simple-KVM/issues/319#issuecomment-1003775896), macOS only supports power-of-two cores. But you can increase the number of sockets to get the virtual cores you need. > > If you need 6 cores, go with: > > ``` > -e EXTRA='-smp 6,sockets=3,cores=2' > ```
* Merge pull request #472 from sickcodes/naked-vnc-legacy-patchsickcodes2022-04-071-19/+0
|\ | | | | Fixes #470 TEMP-FIX is breaking Dockerfile.nakedvnc build #470
| * Fixes #470naked-vnc-legacy-patchsickcodes2022-03-271-19/+0
|/ | | TEMP-FIX is breaking Dockerfile.nakedvnc build #470
* Update via @Error996 https://github.com/Error996sickcodes2022-03-191-1/+9
| | | | | Thanks @Error996! https://github.com/sickcodes/Docker-OSX/discussions/458
* Add warning to test.sh that it's for internal use onlysickcodes2022-03-111-0/+21
| | | Add warning to test.sh that it's for internal use only
* Merge pull request #452 from dulatello08/patch-1sickcodes2022-02-111-0/+35
|\ | | | | Update README.md
| * Update README.mdsickcodes2022-02-111-4/+32
| |
| * Update README.mdDulat2022-02-111-0/+7
|/
* Merge pull request #442 from routmoute/mastersickcodes2022-02-081-0/+11
|\ | | | | README: add PulseAudio with WSLg
| * README: add PulseAudio with WSLgroutmoute2022-02-011-0/+11
|/
* Fix jacksickcodes2022-01-211-1/+1
|
* Fix `Enter a number (default=1): error: invalid number: y` by pegging ↵sickcodes2022-01-212-1/+9
| | | | `extra/jack` over `jack`
* Merge pull request #422 from kimjammer/patch-2sickcodes2022-01-191-18/+25
|\
| * Update READMEKimJammer2022-01-151-1/+1
| | | | | | Fix typo in command to check available wsl linux distros.
| * Add suggested changes to Windows SectionKimJammer2022-01-151-2/+4
| |
| * Update Windows Installation sectionkimjammer2022-01-141-19/+24
|/ | | | Fix typos, more professional language, fix incorrect information.
* Merge pull request #420 from aslafy-z/patch-1sickcodes2022-01-131-6/+6
|\
| * chore(docs): update helm requirements list styleZadkiel Aharonian2022-01-121-6/+6
| |
* | Merge pull request #412 from MikeCoder96/mastersickcodes2022-01-131-11/+36
|\ \ | |/ |/|
| * Update README.md with WSL how toMichele Bencardino2021-12-281-11/+36
|/
* Remove fails from /customsickcodes2021-12-196-40/+3186
|
* Submodule update a9e2b126db742e0681b9b22e7b9c9b685b4825f0sickcodes2021-12-191-0/+0
|
* Merge pull request #396 from martinmullins/patch-2sickcodes2021-12-151-1/+1
|\ | | | | NFS mount documentation, locking issue
| * NFS mount documentation, locking issueMartin Mullins2021-11-301-1/+1
| | | | | | | | | | I ran into some issues when I ran software that was trying to lock files under the nfs folder. This was on Catalina and looks like this is a common issue with Mac -> Linux nfs. After digging into it, for my use case using the `locallocks` NFS option on the Mac client resolved it. The `locallocks` option means that locking is handled by the client. There would be problems if you actually need server side locking.
* | Merge pull request #408 from jk2K/patch-1sickcodes2021-12-142-2/+4
|\ \
| * | fix: vnc version support arg BASE_IMAGE. support dynamic change of Base Image Meng Ye2021-12-142-2/+4
|/ /
* | Add usbfluxd video link: https://www.youtube.com/watch?v=kTk5fGjK_PMsickcodes2021-12-072-0/+9
| |
* | Merge pull request #397 from sickcodes/rollback-nakedsickcodes2021-12-021-223/+26
|\ \ | | | | | | Rollback naked
| * | Rollback nakedrollback-nakedsickcodes2021-12-021-223/+26
|/ /
* | Revert normal Dockerfile to have a picker. Massively increase build speed. ↵sickcodes2021-11-302-3/+7
| | | | | | | | 4G RAM minimum
* | Add default BASESYSTEM_FORMAT variablessickcodes2021-11-302-4/+9
|/
* Fix hyperlink. Add missing legends from credits: @kaoudis, @chirag350, ↵sickcodes2021-11-292-4/+18
| | | | @TheHackerCoding, @cameronsteele, @martinmullins.
* Merge pull request #395 from kimjammer/patch-1sickcodes2021-11-292-14/+30
|\ | | | | Readme - Update information regarding using Windows
| * Add Windows Instructions Link at the tippity top.sickcodes2021-11-291-3/+3
| | | | | | Add Windows Instructions Link at the tippity top.
| * Update README.mdsickcodes2021-11-291-22/+26
| | | | | | Move to top
| * Update CREDITS.mdKimJammer2021-11-291-0/+2
| |