update draft note
This commit is contained in:
parent
2ec7ba1b6a
commit
0abf93d4ae
1 changed files with 29 additions and 0 deletions
|
@ -82,6 +82,17 @@ to reboot without su
|
||||||
|
|
||||||
/etc/polkit-1/rules.d/49-nopasswd_global.rules
|
/etc/polkit-1/rules.d/49-nopasswd_global.rules
|
||||||
|
|
||||||
|
```
|
||||||
|
/* Allow members of the wheel group to execute any actions
|
||||||
|
* without password authentication, similar to "sudo NOPASSWD:"
|
||||||
|
*/
|
||||||
|
polkit.addRule(function(action, subject) {
|
||||||
|
if (subject.isInGroup("wheel")) {
|
||||||
|
return polkit.Result.YES;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
```
|
||||||
|
|
||||||
### passwordless ssh login
|
### passwordless ssh login
|
||||||
|
|
||||||
ssh-add -L > .ssh/authorized_keys
|
ssh-add -L > .ssh/authorized_keys
|
||||||
|
@ -104,6 +115,8 @@ can also be done on most installation media that use grub by hitting
|
||||||
|
|
||||||
### Wine
|
### Wine
|
||||||
|
|
||||||
|
#### Default (Arch)
|
||||||
|
|
||||||
Windows tools will require wine, so we install this right now
|
Windows tools will require wine, so we install this right now
|
||||||
|
|
||||||
paru -S wine
|
paru -S wine
|
||||||
|
@ -132,14 +145,18 @@ winetricks -q allfonts
|
||||||
|
|
||||||
adding some .NET frameworks we will mostly use/need
|
adding some .NET frameworks we will mostly use/need
|
||||||
|
|
||||||
|
```
|
||||||
winetricks -q dotnet35sp1
|
winetricks -q dotnet35sp1
|
||||||
winetricks vb6run
|
winetricks vb6run
|
||||||
winetricks vcrun2015
|
winetricks vcrun2015
|
||||||
|
```
|
||||||
|
|
||||||
optional if errors
|
optional if errors
|
||||||
|
|
||||||
|
```
|
||||||
winetricks -q dotnet40
|
winetricks -q dotnet40
|
||||||
winetricks -q dotnet46
|
winetricks -q dotnet46
|
||||||
|
```
|
||||||
|
|
||||||
registering notepad.exe as default application for logfiles
|
registering notepad.exe as default application for logfiles
|
||||||
|
|
||||||
|
@ -147,6 +164,18 @@ create a backup of the wine installation
|
||||||
|
|
||||||
tar -cJf wine-backup\_$(date +%Y-%m-%d-%H-%M-%S)\_initial-setup.tar.xz .wine-winlink
|
tar -cJf wine-backup\_$(date +%Y-%m-%d-%H-%M-%S)\_initial-setup.tar.xz .wine-winlink
|
||||||
|
|
||||||
|
#### Debian
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo dpkg --add-architecture i386
|
||||||
|
sudo apt update
|
||||||
|
sudo apt install wine wine32 fonts-wine
|
||||||
|
```
|
||||||
|
|
||||||
|
```
|
||||||
|
sudo apt install gcc-multilib g++-multilib
|
||||||
|
```
|
||||||
|
|
||||||
### VARA tools
|
### VARA tools
|
||||||
|
|
||||||
vara hf, vara fm
|
vara hf, vara fm
|
||||||
|
|
Loading…
Add table
Reference in a new issue