Temviewer – no internet connection

Faced with an TeamViewer issue on Linux Mint 18 which I’m using as primary OS: after system start TeamViewer couldn’t connect to the internet and displaying in system tray exclamation mark and tool-tip that there is no internet connection. To fix it TeamViewer service had to be restarted with command below:

sudo teamviewer --daemon restart

this will restart TeamViewer service and also start TeamViewer client.

 

Linux: format USB to exFAT

To format USB flash card to exFAT file system we need this set of commands:

  1. sudo -i
  2. fdisk -l (this will provide mounted disk path, in my case it was /dev/sdc1)
  3. mkfs.exfat -n SOME_DISK_LABEL /dev/sdc1
  4. fsck.exfat /dev/sdc1 (this only need to be sure that disk was formatted w/o issues)