-
Software Configuration Management USING TrotoiseSVN
Download and Install Tortoise SVN First Create folder of any name you want. In my case I created it with the name SVN Repository. After you create folder Right Click on the folder and Click on TortoiseSVN. After that Click on Create repository here. Note :- After you Click on Create repository here a dialogue…
-
How to Fix error ‘dpkg : unrecoverable fatal error, aborting : files list file for package ‘gtk2-engines-pixbuf’.armhf’ is missing final newline E : Subprocess /usr/bin/dpkg returned an error code (2)’
To Fix ‘dpkg : unrecoverable fatal error, aborting : files list file for package ‘gtk2-engines-pixbuf’.armhf’ is missing final newline E : Subprocess /usr/bin/dpkg returned an error code (2)’ use following commands : sudo apt-get clean sudo apt-get upgrade
-
What it takes to be a Security Tester ?
The Key Factors to became a successful security tester are as follows. Knowledge of Network and Computer Technology. Ability to communicate with management and IT personnel. Understanding of the laws. Ability to use necessary tools.
-
How to view the Routing Table
Typical Fields in a Routing Table are, Subnet mask Destination IP Address Next Hop Address Flags  U : route is up and running  G : destination is in another network  H : host-specific address  D : added by redirection  M : modified by redirection Interface To View Routing Table in Linux System following command is…
-
How to solve dpkg interrupted
Solution for dpkg interrupted can be following : remove all files from /var/lib/dkpg/updates sudo apt-get upgrade Manual Method sudo dpkg –configure -a sudo apt-get install -f
-
TensorFlow Hello World
Download and Install the TensorFlow 2.0 Beta Package. Import TensorFlow into Program from __future__ import absolute_import,division,print_function,unicode_literal pip install tensorflow==2.0.0-beta1 import tensorflow as tf Load and prepare the MNIST dataset. Convert the samples from integers to Floating-point Numbers. mnist=tf.keras.datasets.mnist (x_train,y_train),(x_test,y_test)=mnist.load_data() x_train,x_test=x_train/255.0,x_test/255.0 (Normalisation) Build the tf.keras.Sequential model by stacking layes. Choose an optimizer and loss function…
-
Remove Shortcut Virus using Command Prompt (cmd)
Execute The Following Steps to Remove Shortcut Virus using Command Prompt (cmd). Step 1 :- Run Command Prompt as Administration Step 2 :- Mention the Drive in which Shortcut Virus Resides.Command G: as shown below (In my case it is G: Drive yours can be same or different). Step 3 :- Type Command del *.lnk and Press Enter.Step 4 :- Type…