Overwrite docker config
Create a /etc/systemd/system/docker.service.d/docker.conf file and specify your overrides there. https://stackoverflow.com/a/31385025
Create a /etc/systemd/system/docker.service.d/docker.conf file and specify your overrides there. https://stackoverflow.com/a/31385025
|
1 |
"C:\Program Files\Google\Chrome\Application\chrome.exe" --remote-debugging-port=9222 -- "%1" |
https://stackoverflow.com/a/69192658/7240131
1) „Start menu” -> „Execute” – > gpedit.msc 2) Navigate to „Computer Configuration” -> „Administrative Templates” -> „Windows Components” -> „Windows Logon Options” 3) Double-click on the „Disable or enable software Secure Attention Sequence” parameter. 4) Check „Enable”, then select „Services” in the combobox. 5) Apply the modification
|
1 |
/opt/mssql-tools/bin/sqlcmd -S 127.0.0.1 -d database -U sa -P password -i /sql/SAP_data.sql |
Verify the drive designations:
|
1 |
lvmdiskscan |
Add new drive to LVM Physical volume:
|
1 |
pvcreate /dev/sdf |
Extend volume group:
|
1 |
vgextend vg_data /dev/sdf |
Resize logical volume:
|
1 |
lvm lvextend -l +100%FREE /dev/vg_data/storage |
Resize encrypted partition:
|
1 2 3 4 |
cryptsetup luksOpen /dev/vg_data/storage storage cryptsetup resize storage e2fsck -f /dev/mapper/storage resize2fs -p /dev/mapper/vg_data |
Verify sizes:
|
1 2 |
mount /storage/ df --human |
Add new entry to .env file directly inside project dir.
|
1 |
REACT_EDITOR=webstorm |
Set Generate shell scripts in Jetbrains toolbox options. Add above path to Environment Variables
|
1 2 3 4 5 |
abaqus cse listenerport=4444 configure=cosHTV6_config interactive abaqus input=cosHTV6-CFD job=cosHTV6-CFD csedirector=localhost:4444 interactive "c:\Program Files (x86)\IntelSWTools\parallel_studio_xe_2019\compilers_and_libraries_2019\\windows\bin\compilervars.bat" intel64 vs2013 abaqus debug -standard -input cosHTV6-STD -job cosHTV6-STD -user sub.obj -interactive -csedirector localhost:4444 |
Delete old files (Windows):
|
1 |
del *.sim *.com *.lck *.dat *.sta *.tmp *.SMA* *.cid *.msg *.prt *.odb *.log |
Run cosimulation with one command:
|
1 |
abaqus cosimulation input=cosHTV6-CFD,cosHTV6-STD job=cosHTV6-CFD,cosHTV6-STD user=empty.obj,sub.obj cpus=9 interactive cpuratio=8,1 configure=cosHTV6_config cosimjob=cosHTV6 |
Adding:
|
1 |
CTRL+x, h |
Jump/Edit:
|
1 |
CTRL+\ |
Fix group caching: /lib/private/Group/Database.php: https://github.com/nextcloud/server/issues/21885#issuecomment-749492759 Update and fix instance:
|
1 2 3 4 5 6 7 |
sudo docker exec --user www-data -it cloud php occ upgrade sudo docker exec --user www-data -it cloud php occ maintenance:repair sudo docker exec --user www-data -it cloud php occ db:add-missing-primary-keys sudo docker exec --user www-data -it cloud php occ db:add-missing-indices sudo docker exec --user www-data -it cloud php occ db:add-missing-columns sudo docker exec --user www-data -it cloud php occ files:cleanup sudo docker exec --user www-data -it cloud php occ maintenance:mode --off |