09 2016 档案
摘要:1 # bytes object 2 b = b"example" 3 4 # str object 5 s = "example" 6 7 # str to bytes 8 bytes(s, encoding = "utf8") 9 10 # bytes to str 11 str(b, encoding = "utf-8") 12 1...
阅读全文
摘要:一、安装apache yum install httpd 二、为 /var/www/html 创建ftp账号www useradd -M -d /var/www/html www 三、更改ssh配置文件 vi /etc/ssh/sshd_config 1.将原来以下配置注释掉 Subsystem s
阅读全文