Web运维

  • Vulnhub Joy Walkthrough

    Recon 这台靶机对枚举的要求较高,如果枚举不出有用的信息可能无法进一步展开,我们首先进行普通的扫描。 ┌──(kali㉿kali)-[~/Labs/Joy/80] └─$ sudo nmap -sS -sV -p- 192.168.80.136 Starting Nmap 7.93 ( https://nmap.org ) at 2023-04-10 2…

    Linux 2023年4月14日
    00
  • linux下使用多线程编写的聊天室

      自从开始学linux网络编程后就想写个聊天室,一开始原本打算用多进程的方式来写,可是发觉进程间的通信有点麻烦,而且开销也大,后来想用多线程能不能实现呢,于是便去看了一下linux里线程的用法,实际上只需要知道 pthread_create 就差不多了,于是动手开干,用了两天时间,调试的过程挺痛苦的,一开始打算用纯C来撸,便用简单的数组来存储客户端的连接信…

    Linux 2023年4月13日
    00
  • c++程序判断系统是Linux还是Windows

      用C++来实现,本来想了很多,后来越写越烂,而且结果总是不尽人意,干脆这样子好了: 1 int main() { 2 int judge = system(“cls”); 3 if(judge == 0) cout << “Windows!” << endl; 4 else cout << “Linux!” <&…

    Linux 2023年4月13日
    00
  • linux下使用fork,exec,waitpid模拟system函数

    代码如下: #include <sys/types.h> #include <sys/wait.h> #include <unistd.h> #include <stdio.h> #include <errno.h> #include <stdlib.h> inline int mySy…

    Linux 2023年4月13日
    00
  • Linux环境下用C++删除指定文件

    Linux环境下用C++删除指定文件 ”Talk is cheap, show me the code!“ #include <cstdio> #include <string> #include <sys/types.h> #include <sys/stat.h> #include <unistd.h…

    Linux 2023年4月13日
    00
  • 在阿里云中编译Linux4.5.0内核 – Ubuntu内核编译教程

    实验环境:Ubnuntu 64位(推荐使用14.04)+Xshell   阿里云现在提供的云服务器很好用的,用来编译内核性能也不错。本文介绍最基本的内核编译方法,为了方便,所有操作均在root用户下进行。 如果不是root用户可以使用su命令切换到root用户。   注:使用xshell的时候最好把这一项给关闭了(工具——选项——高级)     一、环境准备…

    Linux 2023年4月13日
    00
  • Node Sass does not yet support your current environment: Linux 64-bit with Unsupported runtime

    ubuntu18 webstorm vue项目 报错原因: 缺少相关依赖 解决方法: npm rebuild node-sass 还未解决: npm uninstall –save node-sass npm install –save node-sass   还未解决: npm cache clean npm install –save node-s…

    Linux 2023年4月13日
    00
  • Linux安装Mycat

    1MyCat安装及启动 MyCat: MyCat的官方网站: http://www.mycat.org.cn/ 下载地址: https://github.com/MyCATApache/Mycat-download 已经更换为: http://dl.mycat.io/1.6-RELEASE/ 第一步:将Mycat-server-1.4-release-201…

    Linux 2023年4月13日
    00
  • Linux下安装Dubbox

    1.Dubbox简介   Dubbox 是一个分布式服务框架,其前身是阿里巴巴开源项目Dubbo ,被国内电商及互联网项目中使用,后期阿里巴巴停止了该项目的维护,当当网便在Dubbo基础上进行优化,并继续维护,为了与原有的Dubbo区分,故将其命名为Dubbox。 Dubbox 致力于提供高性能和透明化的RPC远程服务调用方案,以及SOA服务治理方案。简单的…

    Linux 2023年4月13日
    00
  • Linux – Ubuntu Server基础

    部分名词的理解: Ubuntu Server:部署环境,用来部署项目的 linux server 操作系统(绝大部分的项目是跑在linux服务器上的)。 XShell:用来远程连接 linux 服务器的工具,方便操作linux。 pycharm:开发工具(专业版对于 web 开发更友好) python3:编程语言。   安装篇 至于选择哪一个发行版 做ser…

    Linux 2023年4月13日
    00
合作推广
合作推广
分享本页
返回顶部