useradd wx
passwd wx
groupadd hehe
usermod -g hehe wx
useradd hehecici
passwd hehecici
mkdir -p /root/hehe/haha
cd /root/hehe/haha
echo aaaaa > a
echo bbbbb > b
chown root:hehe a
chown wx:hehe b
chmod 631 a
chmod 000 b
cp b c
#%pam-1.0
#session optional pam_keyinit.so force revoke
#auth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeed
#auth required pam_shells.so
#auth include password-auth
#account include password-auth
#session required pam_loginuid.so
#session include password-auth
auth required /lib64/security/pam_userdb.so db=/etc/vsftpd/vuser_passwd
account required /lib64/security/pam_userdb.so db=/etc/vsftpd/vuser_passwd
cd /etc/vsftpd
vim vuser_passwd.txt
裡面寫入使用者名稱密碼
最後檔案的最後新增以下**
guest_enable=yes
guest_username=uftp
user_config_dir=/etc/vsftpd/vuser_conf
allow_writeable_chroot=yes
cdchmod -r 777 /root/hehe/haha
echo abc > d
echo 123 > e
chmod 777 d
chmod 777 e
systemctl restart vsftpd
ftp 172.17.173.223
yum -y install samba
systemctl start smb nmb
systemctl stop firewalld
setenforce 0
vim /etc/samba/smb.conf
在最後新增如下**:
[haha]
path=/root/hehe/haha
valid users=hehecici,wx
writeable=yes
write list=hehecici,wx
read list=hehecici
為samba新增使用者:
smbpasswd -a wx
smbpasswd -a hehecici
systemctl restart smb
chmod -r 755 /root
cd /root/hehe/haha
echo 123 > abc.txt
cdyum -y install samba-client
smbclient -l ip
smbclient -l -u hehecici
mkdir -p /mnt/haha
掛在命令
mount -t cifs -o username=hehecici,password=123456 /haha /mnt/haha
取消掛在
umount /mnt/haha
systemctl restart nmb smb
測試hehecic
cdecho 123 > abc.txt
chown -r hehecici /root/hehe/haha
chmod -r 755 /root
smbclient -u hehecici%123456
測試wx
開啟 install/includes/lib_installer.php 檔案,找到如下**:
可用看到是對gdi
nfo值
檢驗來看
是否支援
某個圖片
型別的,
列印這個
陣列,可
用看到其
是支援j
peg的
,gd_info值檢驗來看是否支援某個型別的,列印這個陣列,可用看到其是支援jpeg的,
gdinf
o值檢驗
來看是否
支援某個
**型別
的,列印
這個陣列
,可用看
到其是支
持jpe
g的,gd_info[『jpeg support』]是存在的,gdi
]不存在
。所以將
gd_info['jpg support']不存在。所以將
gdinf
o[′j
pgsu
ppor
t′]不
存在。所
以將gd_info[『jpg support』] 修改為$gd_info[『jpeg support』]即可。
unzip ecshop.zip
cd /var/www/html/install/includes
vim lib_installer.php
date_default_timezone_set(『asia/shanghai』);
新增鏈結描述
mysql -u root -p
create database wordpress;
grant all on wordpress.* to 『root』@『localhost』 identified by 「123456」;
grant all on wordpress.* to 『root』@『local』 identified by 「123456」;
將wordpress內容全部移到html下面。
linux配置安裝源
ubutu 圖形介面或者 etc apt sources.list redhat7 可以把 安裝盤裡的軟體包拷貝到硬碟,然後設定乙個本地源,具體如下 etc yum.repos.d local.repo local name local baseurl file opt rhel 7 2 rpms ...
配置 Linux的安裝及配置
如果你想自己練練linux命令,我建議你安個虛擬機器。遠端連線虛擬機器,自己的伺服器隨便玩。不過在安裝虛擬機器過程中會遇到一些問題,只要靜下心來好好思考並搜尋答案,這些問題都會迎刃而解。總有同學不清楚vmware centos linux之間的關係,其實vmware是安裝虛擬機器的軟體 centos...
Linux下配置安裝NFS
1 nfs 的啟動與停止 service nfs start service nfs stop service nfs restart 2 nfs 分為伺服器和客戶端 伺服器提供檔案共享的機器 客戶端就是訪問伺服器的機器 3 伺服器端配置1 etc exports格式 目錄選項 share 192....