1658378683
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
sudo apt-get update
sudo apt-get install apache2
$ /etc/init.d/apache2 start/stop/restart
$ sudo /etc/init.d/mysql start
$ sudo mysql_secure_installation
$ sudo apt-get -y install php7.0 libapache2-mod-php7.0
// Khởi động lại máy chủ
$ systemctl restart apache2
$ 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
Bây giờ bạn có thể cài đặt thành công LAMP Stack trên KALI Linux
1595334123
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…
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
1603525140
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.
On this page you need to supply the following:
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.
You will arrive back at the main Virtual Box page. Right-click on your Kali virtual machine and go to Settings.
This step is optional but under “General”, then “Advanced” I usually set the “Shared Clipboard” and the “Drag’n’Drop” to “Bidirectional”.
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.
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.
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.
#ethical-hacking #kali-linux #virtualbox #kali #linux
1594368382
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
1603415915
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.
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 Article: The 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 Text, VSCode, VLC Media Player, Firefox/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
1658378683
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
sudo apt-get update
sudo apt-get install apache2
$ /etc/init.d/apache2 start/stop/restart
$ sudo /etc/init.d/mysql start
$ sudo mysql_secure_installation
$ sudo apt-get -y install php7.0 libapache2-mod-php7.0
// Khởi động lại máy chủ
$ systemctl restart apache2
$ 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
Bây giờ bạn có thể cài đặt thành công LAMP Stack trên KALI Linux