Skip to main content

Posts

How Make Terminal look like Parrot's OS terminal?

copy the following codes and paste this code to file name bashrc which is locate in /home/username/ eg . /home/lazyboy/bashrc   copy code from  HERE or just copy following code ------------------------------------------------------------------------------------------------------------------------- # ~/.bashrc: executed by bash(1) for non-login shells. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) # for examples # If not running interactively, don't do anything [ -z "$PS1" ] && return # don't put duplicate lines in the history. See bash(1) for more options # ... or force ignoredups and ignorespace HISTCONTROL=ignoredups:ignorespace # append to the history file, don't overwrite it shopt -s histappend # for setting history length see HISTSIZE and HISTFILESIZE in bash(1) HISTSIZE=1000 HISTFILESIZE=2000 # check the window size after each command and, if necessary, # update the values of LINES and COLUMNS. shopt -s...

How to Connect Wi-Fi from Linux Terminal Using Nmcli Command

There are several command-line tools for managing a wireless network interface in Linux systems. A number of these can be used to simply view the wireless network interface status (whether it is up or down , or if it is connected to any network), such as iw , iwlist , ip , ifconfig and others. And some are used to connect to a wireless network, and these include: nmcli , is a command-line tool used to create, show, edit, delete, enable, and disable network connections, as well as control and display network device status. First start by checking the name of your network device using the following command. From the output of this command, the device name/interface is wlp1s0 as shown. $ iw dev phy#0 Interface wlp1s0 ifindex 3 wdev 0x1 addr 38:b1:db:7c:78:c7 type managed     Next, check the Wi-Fi device connection status using the following command.   $ iw wlp2s0 link Not connected. From the output above the device is not connected to any ne...

How to stop MAC address from changing after disconnecting? linux

Network-Manager will reset your mac address during the wifi scanning. To permanently change your mac address: Edit your  /etc/NetworkManager/NetworkManager.conf  as follows: [main] plugins=ifupdown,keyfile [ifupdown] managed=false [device] wifi.scan-rand-mac-address=no [keyfile] Edit your  /etc/network/interfaces  by adding the following line: pre-up ifconfig wlp68s0b1 hw ether xx:xx:xx:yy:yy:yy The  xx:xx:xx:yy:yy:yy  is the new mac address obtained from the output of  macchanger -A wlp68s0b1   sources: click here

Changing Your MAC Address/Linux ,Powerful Metod

Changing Your MAC Address/Linux Jump to navigation Jump to search Under GNU/Linux, the MAC address of a network interface card (NIC) can be changed by following the procedures below. NOTE: MAC addresses used within this article are provided for example only. Substitute according to your requirements. NOTE: Commands below MUST be executed with root privileges (e.g. prepended with "sudo "), in order for things to work! /etc/init.d/networking stop ifconfig eth0 hw ether 02:01:02:03:04:08 /etc/init.d/networking start Execute " ifconfig eth0 " to confirm. The above should work on   Debian ,   Ubuntu , and similar distributions. Alternatively, under   RHEL / Fedora   and possibly other GNU/Linux distributions (incl.   CentOS   and   Scientific Linux ), to disable and restart networking, one must stop and start   /etc/init.d/network , instead of   /etc/init.d/networking . If you have iproute2 utilities installed, you may prefer to use...

How To Change Mac Address | Mac Spoofing in Kali / linux

there are mainly two ways to change your mac Method 1: kali@root# ifconfig {Nework Interface} down kali@root# macchanger {options} {network Interface} kali@root# ifconfig {Nework Interface} up kali@root# service network-manager restart     example:         kali@root# ifconfig wlan0 down         kali@root# macchanger -r wlan0         kali@root# ifconfig wlan0} up         kali@root# service network-manager restart Method 2: kali@root# /etc/init.d/networking stop kali@root# ifconfig {Network Interface} down kali@root# ifconfig {Network Interface} hw ether {any new mac} kali@root# /etc/init.d/networking start     example:         kali@root# /etc/init.d/networking stop         kali@root# ifconfig wlan0 down    ...

Wifi Connected But Not Working In Kali/Linux, Solve

follow below simple steps to make net works step1:     kali@root# nano /etc/NetworkManager/NetworkManager.con             [main]             plugins = ifupdown,keyfile             [ifupdown]             managed = true   step2:            kali@root# service network-manager restart step3:             kali@root# rm -rf /etc/resolv.conf step4:             kali@root# echo "nameserver 8.8.8.8" > resolv.conf step5:            kali@root# service network-manager restart note: use sudo in every command if you're not root user hope this work for you  

Kali Linux Unable to Update

How To Fix  Update Problem In Kali Linux After Accidentally Deleting Some Files/Folders from  etc/atp/ ? i remember when i accidentally deleted some files/folders from etc/atp/ and then got in very bad trouble. i search many times on google but didn't find what i needed. then after spending some hours on google search i found a solution. And that solution is very helpful for me. now i am sharing that solution with you. hope this will definitely work for you. open type following commands in terminal ------------------------------------------------------------------------------ su cat << EOF > /etc/apt/sources.list deb http://http.kali.org/kali kali-rolling main non-free contrib EOF apt-get update apt-get dist-upgrade reboot ------------------------------------------------------------------------------------- Sources ==> Click Here  

Random Posts