Friday 30 December 2016

steps to install Synaptic Package Manager in Linux

Synaptic Package Manager in Kali Linux

tested in kali linux and ubuntu

 as we know in kali there is no package installer like in ubuntu have softwere center . see this to know how u can get package installer GUI for kali linux and linux op

 

hello guys i am from rock star devil  

Kali Linux is a fantastic operating system for penetration testing and security evaluation. It comes with virtually all security tools built in, it�s lightweight by default, and it has a huge ecosystem that is constantly helping with the project.
A great benefit of using Kali comes from the larger Linux community. Open source repositories are common and can deliver virtually any kind of software you might want. You just need to know where to look, and hopefully the name of the package that you want.


One package that I install on every Kali installation is Synaptic Package Manager. It is a GUI-based utility that lets me search for packages across a variety of repositories and install them with two clicks. Synaptic is a mainstay of many Linux distributions because it is simple to use and provides a usable front-end while leveraging the existing Linux package framework. A less recognized benefit is that Synaptic automatically filters out packages that will not run on the current system due to architecture differences, system requirements, and so on. What�s not to love about that?
To install Synaptic Package Manager on Kali Linux,


>>>first open a Terminal window.


If you�re not logged in as root type su to become root.


OR


You can also preface the next statement with sudo for the same effect.


>>>Next run apt-get update to update the package list.


>>>Then the important bit, run apt-get install synaptic      <<<< this is a command

>>>Press Y and the installation begins. Once the installation is complete you�ll see the terminal prompt.

 >>>>Once installation is complete you can find LibreOffice on the Applications menu or on the quick launch bar.


When you fire up Synaptic it will take a moment to scan the repositories and packages. Finally, the main Synaptic window appears.



Notice that there are more than 48000 available packages in the list. That�s why I have rarely been unable to locate a package that meets my needs. I recommend that you click the Search button on the toolbar instead of navigating the menus. It will save you a lot of scrolling time and let you get back to hacking faster.

https://youtu.be/cwXtXOxqrSk

Enjoy!!!!!!!!!!!!



 COMMENT IF U HAVE ANY PROBLEM

by ROCK STAR DEVIL ..


Thursday 29 December 2016

E: Unable to locate package for ubuntu [SOLVED]

E Unable to locate package

 

Solution.

Elevating to root.
@ubuntu:~$ sudo su
Adding to deb.
 root@ubuntu:~# echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" > /etc/apt/sources.list.d/webupd8team-java.list
Adding to deb-src
 root@ubuntu:~# echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu precise main" >> /etc/apt/sources.list.d/webupd8team-java.list
Making sure we have the key as well.
 root@ubuntu:~# apt-key adv --keyserver keyserver.ubuntu.com --recv-keys EEA14886
Lets update our apt-get repository.
 root@ubuntu:~# apt-get update  SOLVE FOR UBUNTU LINUXBY ROCK STAR DEVIL 

 

Sunday 6 November 2016

steps to use Calculator in terminal

Calculator language


command to install Calculator language

" apt-get install bc "

past this command in linux terminal (without ")


run this command with 

"bc"


example :-

root@kali:~# bc
bc 1.06.95
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.






example to cal :-


  root@kali:~# bc
bc 1.06.95
Copyright 1991-1994, 1997, 1998, 2000, 2004, 2006 Free Software Foundation, Inc.
This is free software with ABSOLUTELY NO WARRANTY.
For details type `warranty'.
1+1
2





for any problem plzz comment or share  here

http://rockbookzz.blogspot.in/p/idforumembed-typetextjavascript.html

How to fix Sound Problem in Kali linux

How to fix Sound Problem or Audio Issue in Rolling Kali 2016.2

dost worry #rockstardevil solved this problem......

  note - first try this command -

systemctl --user enable pulseaudio && systemctl --user start pulseaudio

 

  Method 1:
Follow me for fixing Audio issue in Rolling Kali 2016.2 rolling,

> First open your terminal and type,

 
  systemctl �user enable pulseaudio && systemctl �user start pulseaudio
 

After writing this or Copy-Paste this code hit Enter.

> Wait until it running.After running this code successfully you should Restart/Reboot system.After Restart/Reboot system you will notice that your audio is working properly.

some time this doesnt work becouse of user problem but we have three more steps here 

 

 

 Method 2: <i & my crew use this method>
> First open your terminal and type  lspci and hit enter.Then you will show your audio device which you are using already.

> Now type and copy-paste this line and hit enter,
sudo apt-get install libasound2 alsa-utils alsa-oss
after typing and and copy-paste this code wait some time it installing some package on your system.

> After completing install type alsamixer and hit enter.A new window will be open on your terminal.

> In this window you will see some channel which are muted.If any of these channels are muted then you will show in the bottom MM.If you enable sound then you should enable it.First you should need to select channel which you want to enable.You could enable it by pressing m button.After enabling it will show 00 instead of MM.Then you will see audio is working properly.

 

 

Method 3: (this method many work without root user & if u use in root user it will temorary work)

> Open your terminal and type 
 pulseaudio -D
Hit enter and you will show "This program is not intended to be run as root(unless --system is specified)"

> If we run this at system start up then we will need to edit bashrc file.So type on terminal gedit .bashrc and bashrc open in gedit.(To run it at startup, need to create a new user with name and password and login with user credentials(username and password).)

> Go to end of the bashrc file which is opened already and write,
           pulseaudio -D
           clear
and Save and Restart/Reboot.

 

 

 

Method 4: (last method )

> First open your terminal and type,
 leafpad /etc/pulse/daemon.conf
A configuration file will be open and now we will need to find default-sample-channels , so press Ctrl+f and a box will be open and paste default-sample-channels and hit enter you will find this then we will need to some thing.You will see a semicolon 
 ; default-sample-channels = 2
is before default-sample-channels now you will need to remove this and remove 2 instead of 1
So finally it will like be,
 default-sample-channels = 1 then save it.

> Type on your terminal pulseaudio --start (its return a error like this "This program is not intended to be run as root(unless --system is specified)",but working now) and reboot your system.

summary 

steps 2 is best plzz try that.......

 

 

That's all.Keep in touch and check next post :) from #rockstardevil

comment if you get any type of problem..... enjoy

 

Saturday 5 November 2016

How to install Teamviewer on Kali Linux

How to install Teamviewer on Kali Linux


Download Teamviewer from their website or HERE


Place it in the root directory



root@kali:~#dpkg --add-architecture i386
root@kali:~#apt-get update






root@kali:~#dpkg -i teamviewer_linux_x64.deb





*You will get dependency error, so you need to execute this command




root@kali:~#apt-get install -f
That's all now you can enjoy tearmview for shareing file or bussisness porpose
have a great day!!!!!!!!!!



@rock star devil@

How to install Wine on Kali Linux, ubuntu, mint and Debian

Have you been trying to figure out the easiest way to install Wine on Kali Linux and Debian 8?. This guide will show you how to get wine working on Kali Linux. It�s also essential for running i386 packages on an amd64 version of Kali or Debian Distribution




 Wine enables you to run Windows Applications on a Linux box. It�s just a Windows emulator on top of Linux. Wine works on Linux,,FreeBSD,Unixware NetBSD,Unixware,SCO OpenServer 5 and Solaris hence you can smoothly run Windows applications on these systems.


 steps--
 Typically you�ll need the following to run wine

 
  1.   The compiled Wine binary
  2.    A properly configured wine.conf and wine.sym
  3.    An installed and working X Window system
  4.    Some MS Windows programs to test

Install Wine on Kali Linux , mint and ubuntu (in kali without $)

 

 

 If you are running Ubuntu and Linux Mint, just enter commands below on your terminal:

$ sudo add-apt-repository ppa:ubuntu-wine/ppa
 
 
 

if you running kali linux just enter commands below on your terminal: ,(without ")

"sudo dpkg --add-architecture i386"

"sudo apt-get update"

 

 

 

than for all linux add this command(in kali without $)

$ sudo apt-get update

$ sudo apt-get install wine

$ sudo apt-get install winetricks

 

Install Wine on Debian Jessie from jessie-backports

With backports, you�ll get latest Wine on your Debian jessie machine, just follow steps below
1. Add repo
# nano /etc/apt/sources.list.d/wine.list
2. Add content to the file:

 

deb http://httpredir.debian.org/debian jessie-backports main
 
 

3. Update repositories

# apt-get update
 
 
4. Enable maltiarch on 64-bit system

# dpkg --add-architecture i386 && apt-get update
 
 
 
 
5. Now install wine

# apt-get install \
wine/jessie-backports \
wine32/jessie-backports \
wine64/jessie-backports \
libwine/jessie-backports \
libwine:i386/jessie-backports \
fonts-wine/jessie-backports



That�s all. You should have wine installed now. See
 
 
some people get problem getting problem in kali becouse of maltiarch

so we will update and enable  then install
steps

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install wine:i386
sudo apt-get install wine-bin:i386
 
 
It will download the packages and install them. After finishing the installation, check again to confirm that the wine have been installed successfully.
Type

wine --version
 
If you want an all in one command, here it is.


 sudo dpkg --add-architecture i386 && apt-get update && apt-get install wine-bin:i386
 
 







thanks you for visting here share this post and enjoy!!!!
if u have any problem plzz comment
or fb me.....

#rockstardevil




E: Unable to locate package on kali linux [SOLVED]


[Kali Linux16.2] How to Fix "E Unable to locate package" or
E: Unable to locate package

WATCH VIDEO TO UNDERSTAND !!!!


FOR KALI 16.2                                                                                 


mirrorDo you ever experience something like this you are about to install something?

"E: Unable to locate package..."
sooo.... now dont worry about this we are going to fix this problem!!!!!!!!!!!!

Here is the solution, replace the source.list code below and place it in the /etc/apt/   HERE FIND SOURCE LIST ND REPLACE WITH .  >>>







deb http://http.kali.org/kali kali-rolling main contrib non-free
# For source package access, uncomment the following line
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free


for kali 2016.2      <The Kali Rolling Repository>



OH NOOOO


Permission Denied?



DONT WORRY WE HAVE SOLUTION FOR EVERYTHINK
If you cannot copy and paste the source.list to the specific directory even though as root, you need to type in the terminal



Code:
"sudo nautilus"

You will be prompted to enter your password. Enter your password and try again copy and paste the file into the directory.

What's next?


After done replacing the source.list, open your terminal and type these command.

Code:
sudo apt-get update


Code:
sudo apt-get -f install



After you have done all of these steps, you now can enjoy installing.




                            or if u useing kali 2.0       

Retired Kali sana (2.0) Repositories

 

replace source code from this>>>>

 deb http://old.kali.org/kali sana main non-free contrib
# For source package access, uncomment the following line
# deb-src http://old.kali.org/kali sana main non-free contrib


          for    Retired Kali moto (1.0) Repositories



deb http://old.kali.org/kali moto main non-free contrib
# For source package access, uncomment the following line
# deb-src http://old.kali.org/kali moto main non-free contrib




                check your linux detail click here for steps - https://devilzlinux.blogspot.com/2016/09/command-for-finding-linux-version.html

                install irc online kali linux  chat room steps given here - https://devilzlinux.blogspot.com/2016/09/real-time-hacking-chat.html

 #ROCK STAR DEVIL#
 



tag



how to fix e: unable to locate package in kali linux fix
how to fix e unable to locate package error
e unable to locate package ubuntu
kali linux application install error, kali linux error, kali error, kali linux error e: unable to locate package, error, linux, kali, kali linux e: unable to locate package, e: unable to locate package, kali repository, kali linux repositories, kali linux repos, kali linux vmware, kali linux, software repository (website category)
kali sana error, kali 2.0 e: unable to locate package, kali sana e: unable to locate package, kali 2.0 repositories, kali 2.0, kali sana, kali linux error e: unable to locate package, kali linux error, kali e: unable to locate package, error, linux, kali, e: unable to locate package, kali repositories, kali linux repositories, kali linux repos, kali linux vmware, kali linux, software repository ( website category ),in linux kali 2.0, linux kali, linux, error apt install, apt intall, e: unable to locate package KALI LINUX 2017 ,LINUX 2017 FIXED

Tuesday 20 September 2016

Basic commands for hardware (linux)

Basic commands for hardware
by rock star devil
#rockstardevil

Code:
 lspci; lsusb; dmesg; lsmod

lspci (man page)
List all PCI devices (e.g. Internal devices).
Code:
root@kali:~# lspci 
00:00.0 Host bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX Host bridge (rev 01)
00:01.0 PCI bridge: Intel Corporation 440BX/ZX/DX - 82443BX/ZX/DX AGP bridge (rev 01)
00:07.0 ISA bridge: Intel Corporation 82371AB/EB/MB PIIX4 ISA (rev 08)
00:07.1 IDE interface: Intel Corporation 82371AB/EB/MB PIIX4 IDE (rev 01)
00:07.3 Bridge: Intel Corporation 82371AB/EB/MB PIIX4 ACPI (rev 08)
00:07.7 System peripheral: VMware Virtual Machine Communication Interface (rev 10)
00:0f.0 VGA compatible controller: VMware SVGA II Adapter
00:10.0 SCSI storage controller: LSI Logic / Symbios Logic 53c1030 PCI-X Fusion-MPT Dual Ultra320 SCSI (rev 01)
00:11.0 PCI bridge: VMware PCI bridge (rev 02)
00:15.0 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.1 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.2 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.3 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.4 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.5 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.6 PCI bridge: VMware PCI Express Root Port (rev 01)
00:15.7 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.0 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.1 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.2 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.3 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.4 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.5 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.6 PCI bridge: VMware PCI Express Root Port (rev 01)
00:16.7 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.0 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.1 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.2 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.3 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.4 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.5 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.6 PCI bridge: VMware PCI Express Root Port (rev 01)
00:17.7 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.0 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.1 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.2 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.3 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.4 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.5 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.6 PCI bridge: VMware PCI Express Root Port (rev 01)
00:18.7 PCI bridge: VMware PCI Express Root Port (rev 01)
02:00.0 USB controller: VMware USB1.1 UHCI Controller
02:01.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 10)
02:02.0 Multimedia audio controller: Ensoniq ES1371 [AudioPCI-97] (rev 02)
02:03.0 USB controller: VMware USB2 EHCI Controller
02:05.0 Ethernet controller: Advanced Micro Devices [AMD] 79c970 [PCnet32 LANCE] (rev 10)
root@kali:~#

lsusb (man page)
List all USB devices (e.g. External devices).
Code:
root@kali:~# lsusb 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 003: ID 0e0f:0002 VMware, Inc. Virtual USB Hub
Bus 002 Device 002: ID 0e0f:0003 VMware, Inc. Virtual Mouse
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
root@kali:~#

dmesg (man page)
Displays the contents of the kernel buffer (Whats in the kernel log).
Note: Warning, this may produce a very large output
Code:
root@kali:~# dmesg 
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 3.12-kali1-686-pae (debian-kernel@lists.debian.org) (gcc version 4.7.2 (Debian 4.7.2-5) ) #1 SMP Debian 3.12.6-2kali1 (2014-01-06)
[ 0.000000] Disabled fast string operations
...snip...
[ 3.367400] EXT4-fs (sda1): re-mounted. Opts: (null)
[ 3.407412] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[ 3.499360] loop: module loaded
[ 4.180582] Netfilter messages via NETLINK v0.30.
[ 4.350865] pcnet32 0000:02:01.0 eth0: link up
[ 5.224520] pcnet32 0000:02:05.0 eth1: link up
[ 7.826665] [drm] width 1024
[ 7.826704] [drm] height 768
[ 7.826716] [drm] bpp 32
[ 7.826771] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[ 7.843755] [drm] width 1024
[ 7.843764] [drm] height 768
[ 7.843771] [drm] bpp 32
[ 7.843827] [drm] Fifo max 0x00200000 min 0x00001000 cap 0x0000077f
[ 187.769500] sda1: WRITE SAME failed. Manually zeroing.
root@kali:~#

lsmod (man page)
Displays the status of modules in the Linux Kernel (e.g. what drivers have been loaded)
Code:
root@kali:~# lsmod 
Module Size Used by
nfnetlink_log 17065 0
nfnetlink 12853 1 nfnetlink_log
binfmt_misc 12733 1
loop 21962 0
dm_crypt 22008 0
hid_generic 12369 0
usbhid 39684 0
hid 80998 2 hid_generic,usbhid
vmw_balloon 12502 0
psmouse 76538 0
serio_raw 12737 0
coretemp 12734 0
evdev 17172 4
parport_pc 25991 0
parport 35171 1 parport_pc
processor 27662 0
battery 12949 0
ac 12588 0
thermal_sys 22960 1 processor
snd_ens1371 22679 2
snd_ac97_codec 96188 1 snd_ens1371
snd_rawmidi 22278 1 snd_ens1371
snd_seq_device 12980 1 snd_rawmidi
snd_pcm 69436 2 snd_ac97_codec,snd_ens1371
snd_page_alloc 12882 1 snd_pcm
snd_timer 22002 1 snd_pcm
vmwgfx 109623 1
snd 50767 10 snd_ac97_codec,snd_timer,snd_pcm,snd_rawmidi,snd_ens1371,snd_seq_device
soundcore 12890 1 snd
button 12824 0
ac97_bus 12462 1 snd_ac97_codec
gameport 13316 1 snd_ens1371

command for finding linux version

Displays which version of Kali-Linux is currently installed



lsb_release -a


example ->


root@kali:~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux Kali Linux 1.0.6
Release: Kali Linux 1.0.6
Codename: rockstardevil
root@kali:~#

#founder rockstardevil

Sunday 18 September 2016

IRC guid in linux

What is IRC?

Internet Relay Chat (IRC) is a form of real time chat designed for group (channel) communication or private communication via private messaging. IRC was created back in 1988 by Jarkko Oikarinen, and since then, its popularity has grown and grown. IRC is an open protocol using TCP (sometimes TLS) working on a server/client model. The standard server port is TCP 6667, but it�s also run under several other nearby ports (6668, 6669, etc.) On the IRC server, there are many channels, each created for a purpose, for a group of people of similar interest. Channels and users have modes which are represented by letters. Becoming familiar with the common IRC modes will help you quickly identify a wide range of information. For more information, please refer to the Wikipedia IRC entry.

Installing HexChat

HexChat is an IRC client that lets you connect to various IRC servers. HexChat is not installed by default in Kali Linux but it can easily be installed as follows:
 apt update && apt install -y hexchat
After installation, HexChat can be located under: Applications > Usual applications > Internet > HexChat

Using HexChat

After running HexChat for the first time, you should see a window similar to the one below.
Complete the appropriate Username Information fields, select FreeNode from the Networks list, and click Connect. You MUST register your nickname with FreeNode in order to be able to speak in our#offsec channel. This will also prevent others from using the same nickname as you on the FreeNode IRC network. Once you have found an available nickname, register it by typing the following command in the HexChat window:
 /msg NickServ REGISTER
You can hide your email address from the public by issuing the following command:
 /msg NickServ SET HIDEMAIL ON
Once you have registered your nick, you will need to identify with NickServ each time you connect to the server as follows, being extremely careful not to expose your password to a public channel:
 /msg NickServ IDENTIFY
For more information about user registration, please refer to the FreeNode registration page. In addition to registering your IRC nick, it is also advisable to get a hostname cloak. You can do so by asking an administrator in the #freenode channel. This will prevent other users from seeing your IP address while connected to IRC. Our channel is located in #offsec. To join our channel simply type the following:
 /join #offsec
As an alternative to HexChat, you can use any other IRC client or FreeNode Web Chat to connect to the FreeNode network. Once you have joined the channel you can �Private Message� (PM) another person where you can talk �one to one�. The standard way of doing this is:
 /msg
Depending on your IRC client, a new tab or window may appear that will be used for private messaging. Please note that your IRC client may have slightly differently terminology, especially if you use the GUI instead of the /msg command. To use the GUI in HexChat, along the right hand side you can right click on a user in the �User List� and select �Open Dialog Window�. This will place you in a PM with that person.
irc-pm

Channel Behavior

Once in the channel, be polite and courteous � that�s pretty much it. We do not tolerate profanity of any type � please take this into consideration.

How to update and upgrade kali linux 2017.1 to latest version

As we know Offensive security always released newer version of Kali Linux.  The newer version fixes bugs and adds latest kernel, version of tools, and some time adds new tools.  There are two terms update and upgrade. In update advance package tool (APT)  fetched headers data of available tools on repository and saved into local drive. Update Kali Linux can be performed by following commad for kali linux 2017.1
# apt-get update
or
$ sudo apt-get update 
In Upgrade, apt install newer version of tools, and removed older version. It upgrade only tools.
# apt-get upgrade
Or
$ sudo apt-get upgrade
To upgrade newer version of Operating System use following command
# apt-get dist-upgrade
Or
# sudo apt-get dist-upgrade 
 now enjoy latest version kali linux 2017.1
Finally, it�s here! We�re happy to announce the availability of the Kali Linux 2017.1 rolling release, which brings with it a bunch of exciting updates and features. As with all new releases, you have the common denominator of updated packages, an updated kernel that provides more and better hardware support, as well as a slew of updated tools � but this release has a few more surprises up its sleeve.


 SEE THIS VIDEO TO LEARN HOW TO USE THESE COMMAND
I SHOWED FIRST COMMAND TO USE ENJOY
 https://youtu.be/v-yZF4OFuRY