Notes, solutions

I will collect solutions for daily tasks on this page it will be useful in the future.

Tenda W311R Router for long time had original chinese firmware and oficical firmwares werent working for it.

Solution: You should install suiatable firmware.

For Tenda W311R V5.07.31_cn the suitable firmware is V5.07.46_en

Download firmware

Official page


Create bootable windows 7 installation usb in ubuntu linux: Using standart partition utility(e.g. Gparted or KDE Partition Manager)

  1. Delete partition table.
  2. Create ntfs partition.
  3. Setup boot flag on created partition.

Next: Create path for image mounting , then mount windows 7 image, copy image content to prepared flash.

sudo mkdir /media/iso
sudo mount <windows7_image_iso>  /media/iso -t udf -o loop
cp -R /media/iso/* <path_to_flash>

Configure username and email Git:

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

Use exfat filesystem on Ubuntu - linux

sudo apt-get install exfat-fuse exfat-utils