Thursday, March 2, 2017

wordpress problem with plugin updates

                                                           changing permissions will solve the problem

                                                               

Tuesday, February 7, 2017

How to change size of hard drive in virtual box ubuntu OS

                                                                       
                                                                                   1 problem
                                                                                    2. shutdown you host
                                                                                   3. cd  to  VirtualBox   and  cd  to  your host directory
                                                                                      4. ls
5 example in my case
                                                                                   6.sudo VBoxManage modifyhd NewVirtualDisk1.vdi --resize 25000
                             
7. resultat
                                                                                 
                                                                           THEN

                                          


                          
                       DELETE SWAP

                     extend space

                             recreate SWAP
                                FINAL




Saturday, October 15, 2016

command banner

                                                                                                            sudo apt install sysvbanner
                                                                           

banner 1234567890


 banner prints out the first 10 characters of text in large letters.

Friday, October 14, 2016

how to install spotify on ubuntu 16.04

              sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys BBEBDCB318AD50EC6865090613B00F1FD2C19886

echo deb http://repository.spotify.com stable non-free | sudo tee /etc/apt/sources.list.d/spotify.list


sudo apt-get update


sudo apt-get install spotify-client



Monday, August 1, 2016

how to decrease temperature on ubuntu 16.04 laptop or desktop

                                                                   step 1
                                                                         
                                                                                 sudo apt-get install lm-sensors  
                                                                                   sensores

step 2

sudo gedit /etc/modules

step 3
add battery
ac
thermal
processor
acpi-cpufreq
cpufreq-userspace


REBOOT


Tuesday, May 17, 2016

How to install google chrome on ubuntu 16.04

                                                                                              sudo apt-get update
                                                                                              sudo apt-get install libgconf2-4 libnss3-1d libxss1
                                                                            https://www.google.com/intl/en/chrome/browser/desktop/                                                                              


                                                                                  cd Dowloads/
                                                                                  ls
                                                                                  sudo chmod 775 google-chrome-stable_current_amd64.deb

                                                                                  sudo dpkg -i  google-chrome-stable_current_amd64.deb


REBOOT YOUR HOST.

Saturday, May 14, 2016

End of life, freezes the soul

no comment.


                                                                             

Thursday, May 12, 2016

how to reconfigure apt-get

                                                              sudo dpkg-reconfigure apt


                                                                                 
   

Wednesday, April 27, 2016

How to change launcher from the left to bottom of the screen ubuntu 16.04


                                                                                                         step 1

                                                                                 

Wednesday, November 25, 2015

How to change root PASSWORD in MySQL in terminal

                                                                   1

                                                                   
 
  service mysql stop
  service mysql status
  mysqld_safe --skip-grant-tables &
  mysql -u root

mysql> SHOW DATABASES;
mysql> use mysql;
mysql> update user set password=PASSWORD("yourverystrongpassword") where user='root';
mysql> flush privileges;

 service mysql restart
 service mysql status
 mysql -u root -p

wordpress problem with plugin updates

                                                           changing permissions will solve the problem                                    ...