本地Ubuntu搭建sqlli-laba靶场
#:解决ubuntu不能全屏(安装vmtools失败)
sudo apt-get update
sudo apt-get install open-vm-tools-desktop
#:配置网卡(ubuntu在桌面视图不显示网卡图标无法修改)
点击vm编辑找到虚拟网络编辑器-NAT设置-DNS设置-取消DNS自动检测可用
#:换源
#:关闭防火墙
sudo ufw disable 关闭防火墙
sudo ufw status 查看是否关闭
#:安装ssh远程连接服务
sudo apt install openssh-server 安装openssh服务器软件包
sudo systemctl start ssh 启动ssh服务
sudo systemctl enable ssh 开机自启
sudo ufw allow ssh 防火墙允许ssh连接
1.安装docker
https://www.runoob.com/dock ...
Linux面试题大全(含答案)
一、基础概念和操作
什么是Linux?
答案:Linux是一个开源的类Unix操作系统,由林纳斯·托瓦兹(Linus Torvalds)于1991年首次发布。它支持多用户、多任务、多线程,具备强大的网络功能和丰富的软件资源。
Linux内核主要负责哪些功能?
答案:Linux内核主要负责系统内存管理、软件程序管理、硬件设备管理和文件系统管理等核心功能。
Linux中交互方式有哪些?
答案:Linux中的交互方式主要有控制台终端和图形化终端两种。GNU bash shell能提供对Linux系统的交互式访问。
启动shell是什么?
答案:登录时系统启动的shell依赖于用户账户的配置,大多数Linux发行版自带以查找shell命令及其他GNU工具信息的在线手册。
如何查看当前目录?
答案:使用pwd命令可以显示当前目录的路径。
如何切换目录?
答案:使用cd命令加上目标目录的路径,可以切换到指定目录。例如,cd /usr/local会切换到/usr/local目录。
如何查看目录中的文件?
答案:使用ls命令可以查看当前目录中的文件和目录。使用l ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment