به نام خداوند مهربان

۴ مطلب با کلمه‌ی کلیدی «ubuntu» ثبت شده است

Re-download with wget's -c (--continue):

wget -c https://ftp.fastsite.edu/images/bigimage.iso
  • حسن دلدار

Open a terminal and run sudo umount /tmp or, if that fails, sudo umount -l /tmp

and then:

sudo mount -t tmpfs -o size=7G,mode=1777 overflow /tmp

sudo mount -t tmpfs -o size=7G,mode=1777 overflow /dev/tmp

or

mount -o remount,size=5G /tmp/

 

print size of /tmp:

df -h /tmp

 

 

  • حسن دلدار

 

please update your PCI ID database with:

sudo update-pciids

And use the following command in your terminal:

lspci -nn | grep '\[03'
  • حسن دلدار

 

From the comment:

sudo update-alternatives --config python

Will show you an error:

update-alternatives: error: no alternatives for python3 

You need to update your update-alternatives , then you will be able to set your default python version.

sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.4 1
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.6 2

Then run :

sudo update-alternatives --config python

Set python3.6 as default.

Or use the following command to set python3.6 as default:

sudo update-alternatives  --set python /usr/bin/python3.6
  • حسن دلدار