CODE VN

CODE VN

1658378683

Cách cài đặt LAMP Stack trên KALI Linux

LAMP Stack là một bộ phần mềm mã nguồn mở có thể được sử dụng để tạo các trang web và ứng dụng web. Trong hướng dẫn này, chúng ta sẽ học cách cài đặt LAMP Stack trên KALI Linux

Để tạo máy chủ LAMP trên KALI Linux, hãy làm theo các bước sau:

 

  1. Cập nhật hệ thống của bạn.

sudo apt-get update

2. Cài đặt Apache2.

sudo apt-get install apache2

3. Để khởi động / khởi động lại / dừng máy chủ Apache2:

$ /etc/init.d/apache2 start/stop/restart

4. Cài đặt MySQL và khởi động các dịch vụ:

$ sudo /etc/init.d/mysql start

$ sudo mysql_secure_installation

5. Cài đặt PHP (php7.0 là phiên bản mới nhất của PHP).

$ sudo apt-get -y install php7.0 libapache2-mod-php7.0

// Khởi động lại máy chủ

$ systemctl restart apache2

6. Kiểm tra xem nó có hoạt động hay không.

$ cd /var/www/html

$ touch info.php

$ nano info.php

Nhập mã dưới đây vào Info.php:

<?php

phpinfo();

?>

Lưu -CTRL+O+enter

Thoát -CTRL+X+enter

7. Bây giờ mở trình duyệt và truy cập http: //localhost/info.php

Bây giờ bạn có thể cài đặt thành công LAMP Stack trên KALI Linux

What is GEEK

Buddha Community

Hertha  Mayer

Hertha Mayer

1595334123

Authentication In MEAN Stack - A Quick Guide

I consider myself an active StackOverflow user, despite my activity tends to vary depending on my daily workload. I enjoy answering questions with angular tag and I always try to create some working example to prove correctness of my answers.

To create angular demo I usually use either plunker or stackblitz or even jsfiddle. I like all of them but when I run into some errors I want to have a little bit more usable tool to undestand what’s going on.

Many people who ask questions on stackoverflow don’t want to isolate the problem and prepare minimal reproduction so they usually post all code to their questions on SO. They also tend to be not accurate and make a lot of mistakes in template syntax. To not waste a lot of time investigating where the error comes from I tried to create a tool that will help me to quickly find what causes the problem.

Angular demo runner
Online angular editor for building demo.
ng-run.com
<>

Let me show what I mean…

Template parser errors#

There are template parser errors that can be easy catched by stackblitz

It gives me some information but I want the error to be highlighted

#mean stack #angular 6 passport authentication #authentication in mean stack #full stack authentication #mean stack example application #mean stack login and registration angular 8 #mean stack login and registration angular 9 #mean stack tutorial #mean stack tutorial 2019 #passport.js

Ethical Hacking: Introducing Kali Linux

Kali Linux is a purpose built security operating system with a large variety of popular penetration testing tools. It is an open source project that is maintained and funded by Offensive Security. In addition to Kali Linux, Offensive Security also maintains the Exploit Database.

I’m going to guide you through a Kali Linux installation using Virtual Box. The first step is to download and install Virtual Box for your operating system.

You will then want to make your way to the Kali Linux download page and download the latest “Kali Linux 64-Bit (Installer)” ISO. Be warned it can take a while as the current version is 3.7G.

Open Virtual Box and click on the New button.

Image for post

On this page you need to supply the following:

  • Name — the name of your virtual machine
  • Machine Folder — the location of where your virtual machine will be created
  • **Type **— Linux
  • Version — Other Linux (64-bit)
  • **Memory **— I used 8192MB but it’s really up to you.

Image for post

All you have to do here is specify how large your virtual machine should be. I used 30 GB. You could allocate less but I wouldn’t really want to go lower than 10 GB.

Image for post

You will arrive back at the main Virtual Box page. Right-click on your Kali virtual machine and go to Settings.

Image for post

This step is optional but under “General”, then “Advanced” I usually set the “Shared Clipboard” and the “Drag’n’Drop” to “Bidirectional”.

Image for post

The next step is under “Storage”, select your DVD drive, and next to “Optical Drive” click on the blue disc. Then “Choose a disk file” and select your new Kali ISO.

Image for post

This step is optional but I find sometimes on my Mac enabling audio in Virtual Box causes the virtual machine not to boot. I don’t use the audio in my virtual machines so I disable it.

Image for post

I recommend changing your “Attached to:” from “NAT” to “Bridged Adapter”. If all connections would be outbound then “NAT” would be fine. I want to be able to serve external services like “DVWA” so allowing the virtual machine to assign its own IP address is preferable. You would do the same with NAT by opening up mappings but it is a pain so I wouldn’t recommend it.

Image for post

#ethical-hacking #kali-linux #virtualbox #kali #linux

Hire Dedicated Linux Developer

Looking to develop real-time applications?

Hire Dedicated Linux Developer from HourlyDeveloper.io, we have dedicated developers who have vast experience in developing applications for Linux and UNIX operating systems and have in-depth knowledge of their processes, kernel tools, internal architectures, and development packages.

Consult with experts:- https://bit.ly/2ZQ5ySP

#hire linux dedicated developer #linux developer #linux development company #linux development services #linux development #linux developer

How I Switched from Windows 10 to Linux Mint

This article is all about my journey on switching from Windows 10 to Linux Mint 20, how I got easily adapted to the Linux environment, and some resources that helped me to set up a perfect Desktop environment.

Uncertainty

Ok, now I have decided to switch to Linux but here comes the first question. Which distro will satisfy my needs both in terms of GUI and other aspects? Linux is not something new to me since I have been working with RHEL based distros in my work for the past 4 years with the command-line.

I know RHEL based distros are good for enterprises but not for personalized desktop environments, at least that’s what I am thinking till now. So I started my research to find the distro that should be easy for me to use and at the same time should have good community support if in case I ran into some problem. Among many Linux distros, I drilled down my list to 4 flavors.

Related ArticleThe Best Linux Distributions for Beginners

Before deciding the Distro it is necessary you formulate the list of tools/programs or packages needed and check if the distro you choose provides all those features.

For me, I use Linux for two main purposes: one is for my professional development work, writing articles, and second for my personal use like Video editing and Movies. Most of the popular software are created to be compatible with Windows, macOS, and Linux like Sublime TextVSCodeVLC Media PlayerFirefox/Chromium browser. Other than these software, cloud-based services make our life easy Like Microsoft Office 365 or G Suite.

#linux distros #linux mint #linux distros #linux mint tips #linux

CODE VN

CODE VN

1658378683

Cách cài đặt LAMP Stack trên KALI Linux

LAMP Stack là một bộ phần mềm mã nguồn mở có thể được sử dụng để tạo các trang web và ứng dụng web. Trong hướng dẫn này, chúng ta sẽ học cách cài đặt LAMP Stack trên KALI Linux

Để tạo máy chủ LAMP trên KALI Linux, hãy làm theo các bước sau:

 

  1. Cập nhật hệ thống của bạn.

sudo apt-get update

2. Cài đặt Apache2.

sudo apt-get install apache2

3. Để khởi động / khởi động lại / dừng máy chủ Apache2:

$ /etc/init.d/apache2 start/stop/restart

4. Cài đặt MySQL và khởi động các dịch vụ:

$ sudo /etc/init.d/mysql start

$ sudo mysql_secure_installation

5. Cài đặt PHP (php7.0 là phiên bản mới nhất của PHP).

$ sudo apt-get -y install php7.0 libapache2-mod-php7.0

// Khởi động lại máy chủ

$ systemctl restart apache2

6. Kiểm tra xem nó có hoạt động hay không.

$ cd /var/www/html

$ touch info.php

$ nano info.php

Nhập mã dưới đây vào Info.php:

<?php

phpinfo();

?>

Lưu -CTRL+O+enter

Thoát -CTRL+X+enter

7. Bây giờ mở trình duyệt và truy cập http: //localhost/info.php

Bây giờ bạn có thể cài đặt thành công LAMP Stack trên KALI Linux