High Quality Linux Sound is just my memo about Linux sound stack configuration, as:
- I never remember all the tools to configure (ALSA, PulseAudio...)
- I never remember the correct parameter(s)
- It must be automated
| # inspiration from here as I was looking for an alternative to balenaEtcher, Rufus and Unetbooting | |
| # | |
| # https://forums.balena.io/t/missing-partition-table-issue/175129/10 | |
| # | |
| # there is a single file sources/install.wim that is larger than 4GB | |
| # and the FAT32 file system has an issue with that, so we will use this | |
| # to split it into chunks that are less than 4 GB each | |
| brew install wimlib | |
| # check the file name of the ISO downloaded from microsoft.com |
| # Requies JSON as the output format and "jq" commandline tool | |
| # If task runs successfuly, exits 0 | |
| run_result=$(aws ecs run-task \ | |
| --cluster ${CLUSTER} \ | |
| --task-definition ${TASK_DEFINITION} \ | |
| --launch-type EC2 \ | |
| --overrides "${OVERRIDES}") | |
| echo ${run_result} | |
| container_arn=$(echo $run_result | jq -r '.tasks[0].taskArn') | |
| aws ecs wait tasks-stopped \ |
| #!/bin/bash | |
| # Copyright © 2017 Google Inc. | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software |