Posts

How to install nuke in windows 10 and windows 11,Installing Nuke on Windows, Install Nuke on Windows

  SINGLE MACHINE 1.Install Your Foundry Product 2.Install FLT7 (If you already have our rlm server working and running , jump to step 8)  3.Stop Foundry License Server 4.Copy the cracked rlm.foundry.exe over the original one (C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\rlm.foundry.exe)  5.Edit xf_foundry.lic replacing desktop 1234567890123456 (host name, Mac-Address)  You can get those informations using rlmutil.exe , a simple dos window ipconfig/all   or you can start Foundry License Utility and choose Diagnostics and Run Diagnostics, you will find your hostname, your mac address (System ID)     PORT is by default 5053 if you dont put any (dont forget to delete the word PORT then if you dont want to specify one) . If you need more infos read RLM manual. 6.Copy the xf_foundry.lic to C:\ProgramData\The Foundry\RLM or C:\Program Files\The Foundry\LicensingTools7.1\bin\RLM\ 7.Restart RLM Server you can do that from services or just with Fo...

How to install Docker on Ubuntu Desktop, Ubuntu Server & AWS Ubuntu Server https://youtu.be/EiGZlkqPuN0

 How to install Docker in Ubuntu Desktop, Ubuntu Server & AWS Ubuntu Server... 1. sudo apt update 2. sudo apt install apt-transport-https ca-certificates curl software-properties-common 3. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 4. sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" 5. sudo apt update 6. apt-cache policy docker-ce 7. sudo apt install docker-ce 8. sudo systemctl status docker 9. docker run hello-world 10. docker search ubuntu 11. docker pull ubuntu 12. docker images 13. docker run -it ubuntu 14. apt update 15. apt install nodejs 16. node -v 17. exit 18. docker ps 19. docker ps -a 20. docker ps -l Thanks For Watching ..... https://youtu.be/EiGZlkqPuN0

How to Install Apache, MySQL and PHP on Ubuntu 20.10

 How to Install Apache, MySQL and PHP on Ubuntu 20.10 1. Install Apache :- sudo apt-get update -y #using the -y option will automatically accept the conditions of the source update sudo apt-get install apache2 -y  sudo apt-get install apache sudo systemctl start apache 2. Install MySQL:- sudo apt-get install mysql-server -y sudo /usr/bin/mysql_secure_installation 3. Install PHP:- sudo apt-get install php -y sudo apt-get install -y php-{bcmath,bz2,intl,gd,mbstring,mcrypt,mysql,zip} sudo apt-get install libapache2-mod-php -y sudo systemctl enable apache service sudo systemctl enable mysql.service systemctl restart apache service cd /var/www/html/ rm index.html gedit index.html     save and exit Press 

How to install Apache JMeter in Ubuntu 20.04

 How to install Apache JMeter in Ubuntu 20.04 JMeter supports the load and performance testing om many different server/protocol types such as:       Web Servers  are HTTP, HTTPS     SOAP / REST       FTP          Database via JDBC     LDAP     Mail - SMTP, POP3, and IMAP     MongoDB (NoSQL)     Native commands or shell scripts     TCP Steps to Install JMeter:- Step 1) Install Java:- sudo apt-get update sudo apt-get install default-jre sudo apt-get install default-jdk Installing Oracle JDK (optional) sudo add-apt-repository ppa:webupd8team/java sudo apt-get update sudo apt-get install oracle-java8-installer sudo update-alternatives --config java Setting the "JAVA_HOME" environment variable sudo nano /etc/environment JAVA_HOME="java path" source /etc/environment Apache JMeter 4.0 (Requires Java 8 or 9.) Download Jmeter:-   http://jmeter.apache.o...

How to Install and Use NPM (Node Package Manager) on Ubuntu 20.04:-

 How to Install and Use NPM (Node Package Manager) on Ubuntu 20.04:- sudo apt-get update sudo apt-get install nodejs npm node --version npm --version npm update npm search “web framework” Installing Node.js Module using NPM:--- mkdir node-demo && cd node-demo npm install express sudo npm -g install express-generator express --version npm list npm -g list    ( install globally installed Node.js Modules)

How to Enable SSH in Ubuntu 20.10 LTS Install open ssh-server

How to Enable SSH in Ubuntu 20.10 LTS Install open ssh-server (Install openssh-server) 1. ssh 2. ssh localhost 3. sudo apt-get update 4. sudo apt-get install openssh-server 5. sudo service ssh status 6. press q for quit 7. ssh localhost 8. chage ssh port   sudo nano/etc/ssh/sshd_config

How to create Bootable USB Drive in Ubuntu 20.10

 How to create Bootable USB Drive in Ubuntu 20.10 Press Alt+Ctrl+T       open terminal 1. sudo apt-get update 2. sudo apt-get install gparted 3. sudo apt-get install unetbootin 4. Launch unetbootin from dash bord 5. xhost si:localuser:root 6. sudo QT_X11_NO_MITSHM=1 /usr/bin/unetbootin  Other Options :- 1. Launch Startup Disk Creator How to enable root login:-  Open Terminal sudo nano /usr/share/lightdm/lightdm.conf.d/50-unity-greeter.conf Step 2: Add the following statement. greeter-show-manual-login=true Step 3: Save and close nano. sudo passwd root