Mount Windows10 Disk with Read and Write Permission

#First if you have some Problems try this (in my example „/dev/sdi2“ ) :ntfsfix /dev/sdi2 #Create Folder for mountpoint:mkdir /media/win #Now mount Disk (in my example „/dev/sdi2“ )sudo mount -t ntfs-3g /dev/sdi2 /media/win -o remove_hiberfile #Source:https://askubuntu.com/questions/384429/cannot-remove-hiberfile-on-ntfs-partition

How to Install Wine-devel 4.8 Winehq-devel on Ubuntu 18.04, 18.10 and 19.04

#Ubuntu 19.04wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_19.04/Release.keysudo apt-key add Release.keysudo gedit /etc/apt/sources.list.d/opensuse.listadd following line inside for ubuntu 19.04:deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_19.04/ ./#Ubuntu 18.10 wget https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/Release.keysudo apt-key add Release.keysudo gedit /etc/apt/sources.list.d/opensuse.listadd following line inside for ubuntu 18.10:deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/Ubuntu_18.10_standard/ ./#Ubuntu 18.04Add following line inside for ubuntu 18.04:deb https://download.opensuse.org/repositories/Emulators:/Wine:/Debian/xUbuntu_18.04/ ./ Save file.#Now we install standard Winehqsudo dpkg –add-architecture i386 wget -nc https://dl.winehq.org/wine-builds/winehq.key sudo apt-key

Compress every file to a seperate zipfile

open folder in Terminal and type: for i in *; do zip -r „${i%}.zip“ „$i“; done https://unix.stackexchange.com/questions/68489/command-to-zip-multiple-directories-into-individual-zip-files

Thunderbird won’t connect to Caldav or TbSync can’t connect to Server

# Open Thunderbird: Tools > Options, select the Advanced panel, select the General tab, and click Config Editor… # after open Config Editor… (about:config) # search for „network.cookie.same-site.enabled“ # change: network.cookie.same-site.enabled = true to -> false; # Restart Thunderbird and retry connect to server

Acer Touchpad no scroll

Wrong Driver, sometime the automatic installed Synaptic Driver don’t fit. Use like in my example from the vendor Site the second Driver ELANTECH Touchpad. — Falsche Treiber, nicht immer ist es ein Synaptic treiber manchmal kann es ein ELANTECH Treiber sein der gebraucht wird. Sehe beim Hersteller model nach welche Treiber er anbietet zu dem

Create a image from a Bad SDCARD or any other fat32 disk and repair it

#Create a Image sudo dd if=/dev/sdf1 of=/sdcardimage.img conv=noerror,sync #try to repair the image sudo dosfsck -t -a -w /sdcardimage.img #mount Image for copy files sudo mkdir /media/recovery/ sudo mount -o rw,loop /sdcardimage.img /media/recovery/ #Infos: if=path_of_file_with_IO_errors specifies input path of=path_of_clean_copy_to_create specifies output path conv=noerror,sync tells dd to be fault-tolerant

Tools for creating Bootable USB-Stick

E2B – http://www.easy2boot.com/download/ Rufus – https://rufus.akeo.ie/ XBoot – https://sites.google.com/site/shamurxboot/ Yumi – https://www.pendrivelinux.com/yumi-multiboot-usb-creator/ MultiBoot – http://liveusb.info/dotclear/ UnetBootin – https://wiki.ubuntuusers.de/UNetbootin/Windows-Installations-Stick_erstellen/ etcher – https://etcher.io/ ventoy – https://www.ventoy.net/en/index.html