sudo -i su 切换root用户 sudo -i su cdo 切换cdo用户 ps -ef | grep recommend 查看recommend进程pid netstat -nap | grep 查看进程监听端口号 jps 查看Java工程的进程pid pwd 查看当前工作目录 df - ...
分类:
系统相关 时间:
2020-07-28 17:02:30
阅读次数:
80
一、测试环境部署项目常用命令: 1、ssh 账号名@ip 端口号 #登录远程服务器 2、登录yun账号: su -yun ccpdo su #切换root权限 3、cd 项目所在路径 #进入项目部署的路径 git status #查看git状态 git branch #查看当前git关联分支 git ...
分类:
其他好文 时间:
2020-04-15 18:13:39
阅读次数:
63
每次使用sudo su切换为root用户的,时候,发现/etc/profile里面的配置竟然不可用系统是centos 6.4的,然后研究了一下 /etc/profile /etc/environment(这个文件为空,那就是什么都不执行) ~/.profile /etc/bashrc ~/.bash... ...
分类:
其他好文 时间:
2020-03-13 01:37:37
阅读次数:
79
问题: 电脑中安装了多个Linux系统,需要删除不用的Linux系统的引导 解决方法: open terminal: su - 切换root用户 cd /boot/ ls ... grub grub2...... cd /boot/grub2/ vim gurb.cfg 找到多余的引导,并删除 gr ...
分类:
系统相关 时间:
2018-09-03 10:36:33
阅读次数:
161
Linux环境配置 1.环境属性-字体配置 $sudo dpkg-reconfigure console-setup 先选择utf-8 2.解锁root用户 $sudo passwd root $sudo su 切换root用户 3.关闭防火墙并卸载iptables服务 #ufw disable F ...
分类:
其他好文 时间:
2018-05-26 00:41:27
阅读次数:
160
切换指定的用户 切换root用户 su - 切换root用户并且shell环境也切换到root su 和su - 区别: su只是切换了root身份,但shel环境仍然是普通用户的shell,而su - 用户和shell环境一起切换成root了 用echo $PATH命令看一下su 和su - 后的 ...
分类:
其他好文 时间:
2017-11-22 20:20:57
阅读次数:
152
环境:centos7 一 最小化安装 服务器以最小化安装,之后需要什么功能就安装什么软件来支持相应的服务. 二 指定特定用户可以使用su切换root 设置管理员组,在管理员组的用户可以su到root身份.不在管理员组的用户不可以切换到root用户. 在Linux中,默认的管理员组为wheel组. 通 ...
分类:
其他好文 时间:
2017-08-26 17:04:33
阅读次数:
450
在测试机安装软件,执行安装脚本提示permission denied。su切换root权限一直不生效,实际使用sudo可实现,整理之。 1. what is su & sudo? su : switch to another user 切换用户 sudo : superuser do 允许用户使用s ...
分类:
其他好文 时间:
2017-02-12 13:30:00
阅读次数:
237
0、 Fiddler代理 1、tcpdump命令+wireshark工具 adb shell #登入手机 su #切换Root用户 /data/local/tcpdump -p -vv -s 0 -w /sdcard/ThinkDrive.pcap #执行抓包命令,结果保存到SD卡ThinkDriv ...
分类:
移动开发 时间:
2016-10-15 21:58:37
阅读次数:
271
今天没事,做了个小实验,普通用户切换如何省略密码省略密码验证(下面是那个具体的实验内容)很简单,只需把/etc/passwd中的root:x:0:0:root:/root:/bin/bash,改为root::0:0:root:/root:/bin/bash,就可以了,就是去掉了里面的x,这样root用户就不用密码了。其他用户也一样。..
分类:
其他好文 时间:
2016-05-05 11:12:10
阅读次数:
158