位置: 编程技术 - 正文

CentOS 6.x 操作系统 vsftpd配置教程(centos6.9)

编辑:rootadmin

推荐整理分享CentOS 6.x 操作系统 vsftpd配置教程(centos6.9),希望有所帮助,仅作参考,欢迎阅读内容。

文章相关热门搜索词:centos 6.7,centos6.5,centos 6.0,centos 6.7,centos6.6,centos6.9,centos6.6,centos 6.0,内容如对您有帮助,希望把文章链接给更多的朋友!

环境:CentOS 5.0 操作系统一.安装:1.安装Vsftpd服务相关部件:[root@KcentOS5 ~]# yum install vsftpd*Dependencies Resolved=============================================================================Package Arch Version Repository Size=============================================================================Installing:vsftpd i 2.0.5-.el5 base kTransaction Summary=============================================================================Install 1 Package(s)Update 0 Package(s)Remove 0 Package(s)2.确认安装PAM服务相关部件:[root@KcentOS5 ~]# yum install pam*Dependencies Resolved=============================================================================Package Arch Version Repository Size=============================================================================Installing:pam-devel i 0..6.2-3..el5 base kTransaction Summary=============================================================================Install 1 Package(s)Update 0 Package(s)Remove 0 Package(s)开发包,其实不装也没有关系,主要的目的是确认PAM。3.安装DB4部件包:这里要特别安装一个db4的包,用来支持文件数据库。[root@KcentOS5 ~]# yum install db4*Dependencies Resolved=============================================================================Package Arch Version Repository Size=============================================================================Installing:db4-devel i 4.3.-9.fc6 base 2.0 Mdb4-java i 4.3.-9.fc6 base 1.7 Mdb4-tcl i 4.3.-9.fc6 base 1.0 Mdb4-utils i 4.3.-9.fc6 base kTransaction Summary=============================================================================Install 4 Package(s)Update 0 Package(s)Remove 0 Package(s)

二.系统帐户1.建立Vsftpd服务的宿主用户:[root@KcentOS5 ~]# useradd vsftpd -s /sbin/nologin默认的Vsftpd的服务宿主用户是root,但是这不符合安全性的需要。这里建立名字为vsftpd的用户,用他来作为支持Vsftpd的服务宿主用户。由于该用户仅用来支持Vsftpd服务用,因此没有许可他登陆系统的必要,并设定他为不能登陆系统的用户。

2.建立Vsftpd虚拟宿主用户:[root@KcentOS5 nowhere]# useradd overlord -s /sbin/nologin本篇主要是介绍Vsftp的虚拟用户,虚拟用户并不是系统用户,也就是说这些FTP的用户在系统中是不存在的。他们的总体权限其实是集中寄托在一个在系统中的某一个用户身上的,所谓Vsftpd的虚拟宿主用户,就是这样一个支持着所有虚拟用户的宿主用户。由于他支撑了FTP的所有虚拟的用户,那么他本身的权限将会影响着这些虚拟的用户,因此,处于安全性的考虑,也要非分注意对该用户的权限的控制,该用户也绝对没有登陆系统的必要,这里也设定他为不能登陆系统的用户。(这里插一句:原本在建立上面两个用户的时候,想连用户主路径也不打算给的。本来想加上 -d /home/nowhere 的,据man useradd手册上讲述:“ -d, --home HOME_DIRThe new user will be created using HOME_DIR as the value for theuser鈙 login directory. The default is to append the LOGIN name toBASE_DIR and use that as the login directory name. The directoryHOME_DIR does not have to exist but will not be created if it ismissing.使用-d参数指定用户的主目录,用户主目录并不是必须存在的。如果没有存在指定的目录的话,那么它将不会被建立”。

三.调整Vsftpd的配置文件:1.编辑配置文件前先备份[root@KcentOS5 ~]# cp /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.backup2.编辑主配置文件Vsftpd.conf[root@KcentOS5 ~]# vi /etc/vsftpd/vsftpd.conf这里我将原配置文件的修改完全记录,凡是修改的地方我都会保留注释原来的配置。其中加入我对每条配置项的认识,对于一些比较关键的配置项这里我做了我的观点,并且原本英语的说明我也不删除,供参考对比用。------------------------------------------------------------------------------# Allow anonymous FTP? (Beware - allowed by default if you comment this out).#anonymous_enable=YESanonymous_enable=NO设定不允许匿名访问## Uncomment this to allow local users to log in.local_enable=YES设定本地用户可以访问。注意:主要是为虚拟宿主用户,如果该项目设定为NO那么所有虚拟用户将无法访问。## Uncomment this to enable any form of FTP write command.write_enable=YES设定可以进行写操作。## Default umask for local users is . You may wish to change this to ,# if your users expect that ( is used by most other ftpd&#;s)local_umask=设定上传后文件的权限掩码。## Uncomment this to allow the anonymous FTP user to upload files. This only# has an effect if the above global write enable is activated. Also, you will# obviously need to create a directory writable by the FTP user.#anon_upload_enable=YESanon_upload_enable=NO禁止匿名用户上传。## Uncomment this if you want the anonymous FTP user to be able to create# new directories.#anon_mkdir_write_enable=YESanon_mkdir_write_enable=NO禁止匿名用户建立目录。## Activate directory messages - messages given to remote users when they# go into a certain directory.dirmessage_enable=YES设定开启目录标语功能。## Activate logging of uploads/downloads.xferlog_enable=YES设定开启日志记录功能。## Make sure PORT transfer connections originate from port (ftp-data).connect_from_port_=YES设定端口进行数据连接。## If you want, you can arrange for uploaded anonymous files to be owned by# a different user. Note! Using "root" for uploaded files is not# recommended!#chown_uploads=YESchown_uploads=NO设定禁止上传文件更改宿主。#chown_username=whoever## You may override where the log file goes if you like. The default is shown# below.xferlog_file=/var/log/vsftpd.log设定Vsftpd的服务日志保存路径。注意,该文件默认不存在。必须要手动touch出来,并且由于这里更改了Vsftpd的服务宿主用户为手动建立的Vsftpd。必须注意给与该用户对日志的写入权限,否则服务将启动失败。## If you want, you can have your log file in standard ftpd xferlog formatxferlog_std_format=YES设定日志使用标准的记录格式。## You may change the default value for timing out an idle session.#idle_session_timeout=设定空闲连接超时时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值,单位秒。## You may change the default value for timing out a data connection.#data_connection_timeout=设定单次最大连续传输时间,这里使用默认。将具体数值留给每个具体用户具体指定,当然如果不指定的话,还是使用这里的默认值,单位秒。## It is recommended that you define on your system a unique user which the# ftp server can use as a totally isolated and unprivileged user.#nopriv_user=ftpsecurenopriv_user=vsftpd设定支撑Vsftpd服务的宿主用户为手动建立的Vsftpd用户。注意,一旦做出更改宿主用户后,必须注意一起与该服务相关的读写文件的读写赋权问题。比如日志文件就必须给与该用户写入权限等。## Enable this and the server will recognise asynchronous ABOR requests. Not# recommended for security (the code is non-trivial). Not enabling it,# however, may confuse older FTP clients.async_abor_enable=YES设定支持异步传输功能。## By default the server will pretend to allow ASCII mode but in fact ignore# the request. Turn on the below options to have the server actually do ASCII# mangling on files when in ASCII mode.# Beware that on some FTP servers, ASCII support allows a denial of service# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd# predicted this attack and has always been safe, reporting the size of the# raw file.# ASCII mangling is a horrible feature of the protocol.ascii_upload_enable=YESascii_download_enable=YES设定支持ASCII模式的上传和下载功能。## You may fully customise the login banner string:ftpd_banner=This Vsftp server supports virtual users ^_^设定Vsftpd的登陆标语。## You may specify a file of disallowed anonymous e-mail addresses. Apparently# useful for combatting certain DoS attacks.#deny_email_enable=YES# (default follows)#banned_email_file=/etc/vsftpd/banned_emails## You may specify an explicit list of local users to chroot() to their home# directory. If chroot_local_user is YES, then this list becomes a list of# users to NOT chroot().#chroot_list_enable=YESchroot_list_enable=NO禁止用户登出自己的FTP主目录。# (default follows)#chroot_list_file=/etc/vsftpd/chroot_list## You may activate the "-R" option to the builtin ls. This is disabled by# default to avoid remote users being able to cause excessive I/O on large# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume# the presence of the "-R" option, so there is a strong case for enabling it.#ls_recurse_enable=YESls_recurse_enable=NO禁止用户登陆FTP后使用"ls -R"的命令。该命令会对服务器性能造成巨大开销。如果该项被允许,那么挡多用户同时使用该命令时将会对该服务器造成威胁。# When "listen" directive is enabled, vsftpd runs in standalone mode and# listens on IPv4 sockets. This directive cannot be used in conjunction# with the listen_ipv6 directive.listen=YES设定该Vsftpd服务工作在StandAlone模式下。顺便展开说明一下,所谓StandAlone模式就是该服务拥有自己的守护进程支持,在ps -A命令下我们将可用看到vsftpd的守护进程名。如果不想工作在StandAlone模式下,则可以选择SuperDaemon模式,在该模式下 vsftpd将没有自己的守护进程,而是由超级守护进程Xinetd全权代理,与此同时,Vsftp服务的许多功能将得不到实现。## This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6# sockets, you must run two copies of vsftpd whith two configuration files.# Make sure, that one of the listen options is commented !!#listen_ipv6=YESpam_service_name=vsftpd设定PAM服务下Vsftpd的验证配置文件名。因此,PAM验证将参考/etc/pam.d/下的vsftpd文件配置。userlist_enable=YES设定userlist_file中的用户将不得使用FTP。tcp_wrappers=YES设定支持TCP Wrappers。#KC: The following entries are added for supporting virtual ftp users.以下这些是关于Vsftpd虚拟用户支持的重要配置项目。默认Vsftpd.conf中不包含这些设定项目,需要自己手动添加配置。guest_enable=YES设定启用虚拟用户功能。guest_username=overlord指定虚拟用户的宿主用户。virtual_use_local_privs=YES设定虚拟用户的权限符合他们的宿主用户。user_config_dir=/etc/vsftpd/vconf设定虚拟用户个人Vsftp的配置文件存放路径。也就是说,这个被指定的目录里,将存放每个Vsftp虚拟用户个性的配置文件,一个需要注意的地方就是这些配置文件名必须和虚拟用户名相同。-------------------------------------------------------------------------保存退出。3.建立Vsftpd的日志文件,并更该属主为Vsftpd的服务宿主用户:[root@KcentOS5 ~]# touch /var/log/vsftpd.log[root@KcentOS5 ~]# chown vsftpd.vsftpd /var/log/vsftpd.log 4.建立虚拟用户配置文件存放路径:[root@KcentOS5 ~]# mkdir /etc/vsftpd/vconf/三.制作虚拟用户数据库文件1.先建立虚拟用户名单文件:[root@KcentOS5 ~]# touch /etc/vsftpd/virtusers建立了一个虚拟用户名单文件,这个文件就是来记录vsftpd虚拟用户的用户名和口令的数据文件,我这里给它命名为virtusers。为了避免文件的混乱,我把这个名单文件就放置在/etc/vsftpd/下。

2.编辑虚拟用户名单文件:[root@KcentOS5 ~]# vi /etc/vsftpd/virtusers----------------------------kanecruisenearnearmellomello----------------------------编辑这个虚拟用户名单文件,在其中加入用户的用户名和口令信息。格式很简单:“一行用户名,一行口令”。

3.生成虚拟用户数据文件:[root@KcentOS5 ~]# db_load -T -t hash -f /etc/vsftpd/virtusers /etc/vsftpd/virtusers.db这里我顺便把这个命令简单说明一下----------------------------------------------------------------------察看db4的db_load命令使用方法:[root@KSRV2 vsftpd]# db_loadusage: db_load [-nTV] [-c name=value] [-f file][-h home] [-P password] [-t btree | hash | recno | queue] db_fileusage: db_load -r lsn | fileid [-h home] [-P password] db_file解释在本篇中,db_load命令几个相关选项很参数-TThe -T option allows non-Berkeley DB applications to easily load text files into databases.If the database to be created is of type Btree or Hash, or the keyword keys is specified as set, the input must be paired lines of text, where the first line of the pair is the key item, and the second line of the pair is its corresponding data item. If the database to be created is of type Queue or Recno and the keywork keys is not set, the input must be lines of text, where each line is a new data item for the database.选项-T允许应用程序能够将文本文件转译载入进数据库。由于我们之后是将虚拟用户的信息以文件方式存储在文件里的,为了让Vsftpd这个应用程序能够通过文本来载入用户数据,必须要使用这个选项。If the -T option is specified, the underlying access method type must be specified using the -t option.如果指定了选项-T,那么一定要追跟子选项-t-tSpecify the underlying access method. If no -t option is specified, the database will be loaded into a database of the same type as was dumped; for example, a Hash database will be created if a Hash database was dumped.Btree and Hash databases may be converted from one to the other. Queue and Recno databases may be converted from one to the other. If the -k option was specified on the call to db_dump then Queue and Recno databases may be converted to Btree or Hash, with the key being the integer record number.子选项-t,追加在在-T选项后,用来指定转译载入的数据库类型。扩展介绍下,-t可以指定的数据类型有Btree、Hash、Queue和Recon数据库。这里,接下来我们需要指定的是Hash型。----------------------------------------------------------------------------

4.察看生成的虚拟用户数据文件[root@KcentOS5 ~]# ll /etc/vsftpd/virtusers.db-rw-r--r-- 1 root root Sep : /etc/vsftpd/virtusers.db需要特别注意的是,以后再要添加虚拟用户的时候,只需要按照“一行用户名,一行口令”的格式将新用户名和口令添加进虚拟用户名单文件。但是光这样做还不够,不会生效的哦!还要再执行一遍“ db_load -T -t hash -f 虚拟用户名单文件 虚拟用户数据库文件.db ”的命令使其生效才可以!

四.设定PAM验证文件,并指定虚拟用户数据库文件进行读取1.察看原来的Vsftp的PAM验证配置文件:[root@KcentOS5 ~]# cat /etc/pam.d/vsftpd----------------------------------------------------------------#%PAM-1.0session optional pam_keyinit.so force revokeauth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeedauth required pam_shells.soauth include system-authaccount include system-authsession include system-authsession required pam_loginuid.so----------------------------------------------------------------

2.在编辑前做好备份:[root@KcentOS5 ~]# cp /etc/pam.d/vsftpd /etc/pam.d/vsftpd.backup3.编辑Vsftpd的PAM验证配置文件[root@KcentOS5 ~]# vi /etc/pam.d/vsftpd----------------------------------------------------------------#%PAM-1.0auth sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/virtusersaccount sufficient /lib/security/pam_userdb.so db=/etc/vsftpd/virtusers以上两条是手动添加的,内容是对虚拟用户的安全和帐户权限进行验证。这里的auth是指对用户的用户名口令进行验证。这里的accout是指对用户的帐户有哪些权限哪些限制进行验证。其后的sufficient表示充分条件,也就是说,一旦在这里通过了验证,那么也就不用经过下面剩下的验证步骤了。相反,如果没有通过的话,也不会被系统立即挡之门外,因为sufficient的失败不决定整个验证的失败,意味着用户还必须将经历剩下来的验证审核。再后面的/lib/security/pam_userdb.so表示该条审核将调用pam_userdb.so这个库函数进行。最后的db=/etc/vsftpd/virtusers则指定了验证库函数将到这个指定的数据库中调用数据进行验证。#KC: The entries for Vsftpd-PAM are added above.session optional pam_keyinit.so force revokeauth required pam_listfile.so item=user sense=deny file=/etc/vsftpd/ftpusers onerr=succeedauth required pam_shells.soauth include system-authaccount include system-authsession include system-authsession required pam_loginuid.so----------------------------------------------------------------五.虚拟用户的配置1.规划好虚拟用户的主路径:[root@KcentOS5 ~]# mkdir /opt/vsftp/

2.建立测试用户的FTP用户目录:[root@KcentOS5 ~]# mkdir /opt/vsftp/kanecruise/ /opt/vsftp/mello/ /opt/vsftp/near/

3.建立虚拟用户配置文件模版:[root@KcentOS5 ~]# cp /etc/vsftpd/vsftpd.conf.backup /etc/vsftpd/vconf/vconf.tmp

4.定制虚拟用户模版配置文件:[root@KcentOS5 ~]# vi /etc/vsftpd/vconf/vconf.tmp--------------------------------local_root=/opt/vsftp/virtuser指定虚拟用户的具体主路径。anonymous_enable=NO设定不允许匿名用户访问。write_enable=YES设定允许写操作。local_umask=设定上传文件权限掩码。anon_upload_enable=NO设定不允许匿名用户上传。anon_mkdir_write_enable=NO设定不允许匿名用户建立目录。idle_session_timeout=设定空闲连接超时时间。data_connection_timeout=设定单次连续传输最大时间。max_clients=设定并发客户端访问个数。max_per_ip=5设定单个客户端的最大线程数,这个配置主要来照顾Flashget、迅雷等多线程下载软件。local_max_rate=设定该用户的最大传输速率,单位b/s。--------------------------------这里将原vsftpd.conf配置文件经过简化后保存作为虚拟用户配置文件的模版。这里将并不需要指定太多的配置内容,主要的框架和限制交由 Vsftpd的主配置文件vsftpd.conf来定义,即虚拟用户配置文件当中没有提到的配置项目将参考主配置文件中的设定。而在这里作为虚拟用户的配置文件模版只需要留一些和用户流量控制,访问方式控制的配置项目就可以了。这里的关键项是local_root这个配置,用来指定这个虚拟用户的FTP主路径。5.更改虚拟用户的主目录的属主为虚拟宿主用户:[root@KcentOS5 ~]# chown -R overlord.overlord /opt/vsftp/6.检查权限:[root@KcentOS5 ~]# ll /opt/vsftp/total drwxr-xr-x 2 overlord overlord Sep : kanecruisedrwxr-xr-x 2 overlord overlord Sep : mellodrwxr-xr-x 2 overlord overlord Sep : near六.给测试用户定制:1.从虚拟用户模版配置文件复制:[root@KcentOS5 ~]# cp /etc/vsftpd/vconf/vconf.tmp /etc/vsftpd/vconf/kanecruise

2.针对具体用户进行定制:[root@KcentOS5 ~]# vi /etc/vsftpd/vconf/kanecruise---------------------------------local_root=/opt/vsftp/kanecruiseanonymous_enable=NOwrite_enable=YESlocal_umask=anon_upload_enable=NOanon_mkdir_write_enable=NOidle_session_timeout=data_connection_timeout=max_clients=1max_per_ip=1local_max_rate=---------------------------------七.启动服务:[root@KcentOS5 ~]# service vsftpd startStarting vsftpd for vsftpd: [ OK ]八.测试:1.在虚拟用户目录中预先放入文件:[root@KcentOS5 ~]# touch /opt/vsftp/kanecruise/kc.test

2.从其他机器作为客户端登陆FTP:[root@Yum ~]# ftpftp> open ..1.Connected to ..1.. This Vsftp server supports virtual users ^_^ Please login with USER and PASS. Please login with USER and PASS.KERBEROS_V4 rejected as an authentication typeName (..1.:root): kanecruise Please specify the password.Password: Login successful.Remote system type is UNIX.Using binary mode to transfer files.

CentOS 6.x 操作系统 vsftpd配置教程(centos6.9)

3.测试列单操作ftp> ls Entering Passive Mode (,,1,,,) Here comes the directory listing.-rw-r--r-- 1 0 Sep : kc.test Directory send OK.(目录列单成功)

4.测试上传操作:ftp> put(local-file) KC.repo(remote-file) KC.repolocal: KC.repo remote: KC.repo Entering Passive Mode (,,1,,,1) Ok to send data. File receive OK. (上传成功) bytes sent in 0. seconds ( Kbytes/s)ftp>

5.测试建立目录操作:ftp> mkdir test "/opt/vsftp/kanecruise/test" created (目录建立成功)

6.测试下载操作:ftp> get kc.testlocal: kc.test remote: kc.test Entering Passive Mode (,,1,,,) Opening BINARY mode data connection for kc.test (0 bytes). File send OK.(下载成功)

7.测试超时:ftp> dir Timeout.(超时有效)ftp> userNot connected.注意:在/etc/vsftpd/vsftpd.conf中,local_enable的选项必须打开为Yes,使得虚拟用户的访问成为可能,否则会出现以下现象:----------------------------------[root@KcentOS5 ~]# ftpftp> open ..1.Connected to ..1.. OOPS: vsftpd: both local and anonymous access disabled!----------------------------------原因:虚拟用户再丰富,其实也是基于它们的宿主用户overlord的,如果overlord这个虚拟用户的宿主被限制住了,那么虚拟用户也将受到限制。补充:

OOPS:错误

有可能是你的vsftpd.con配置文件中有不能被实别的命令,还有一种可能是命令的YES 或 NO 后面有空格。

我遇到的是命令后面有空格。因为我是用GEDIT来编辑的配置文件

权限错误,不能创建目录和文件

解决方法: 关闭selinux

# vi /etc/selinux/config

将 SELINUX=XXX -->XXX 代表级别

改为

SELINUX=disabled

重启

史上最全的Linux系统 ISO下载 经常有新接触Linux的同学问,Linux从哪里下载啊?这种问题,对于熟手来说要么不屑一提,要么就引来了各种Linux发行版之争,让初学者无所适从。其实

Linux可以创建桌面视频吗?在Linux桌面上创建视频DVD的图文教程 问题:我想要从MP4电影文件创建一张视频DVD,在Linux桌面环境中有没有我可以用来创建视频DVD的DVD创作工具?DeVeDe是一个开源(GPLv3)DVD创作软件,它允

在Linux系统中加密邮件的方法 如果你一直在考虑如何加密电子邮件,那么在众多的邮件服务和邮件客户端中挑来挑去一定是件头痛的事情.可以考虑两种加密方法:SSL或TLS加密会保

标签: centos6.9

本文链接地址:https://www.jiuchutong.com/biancheng/367583.html 转载请保留说明!

上一篇:在Linux系统下查找可移植可执行文件的方法(linux chakan)

下一篇:史上最全的Linux系统 ISO下载(史上最全的领域学说)

  • 增值税的附加税比例
  • 制造费用的结转公式
  • 电子税务局怎么删除办税员
  • 残保金滞纳金能抵扣吗
  • 融资性售后回租承租方出售资产为什么不缴纳增值税
  • 哪些类型的合同无效
  • 企业购入办公桌和办公椅的核算
  • 研发加计扣除的标准
  • 非独立核算的公司怎么报税
  • 预提工程成本的会计分录
  • 开票退回怎么做账
  • 公司注销了帐户钱能办款
  • 购买债券发生的交易费用计入哪个科目
  • 651错误是怎么回事
  • 常见内存大小
  • 贸易公司销售
  • php zip模块
  • win10专业版如何关闭系统更新
  • php递归遍历文件夹
  • php面向对象的三大特征
  • 委托证券公司购入公允价值为100万元的股票
  • 金蝶科目明细表
  • php文件上传后只显示了路径怎么办啊
  • css怎样设置行间距
  • vue开发教程
  • vi命令模式下的常用命令有哪些?
  • php str
  • 应交税金应交增值税科目设置
  • 企业在计提短期借款利息时可能用到的会计科目有
  • 股权转让怎么查
  • 现代服务增值税纳税义务发生时间
  • 增量留底退税怎么比增值税高
  • 抚恤金发放标准2019年
  • 新旧会计准则对比
  • 年会服装费属于什么费用
  • 企业代扣代缴个人所得税申报流程图
  • 法人怎么从公账上大量取钱
  • 上缴非税收入的税种
  • 车船税征收范围有
  • 工业企业外购存货的入账价值一般包括()
  • 主营业务成本工资写什么部门
  • 航空电子客票行程单怎么打印
  • 一次性伤残就业补助金怎么领取
  • 商业会计做账流程视频
  • 投资收益 增加
  • 物业费是否需要物价局备案
  • 企业工资薪金支出怎么确认
  • 建筑行业预收账款预缴税
  • 亏损太多账务如何处理
  • 资产负债表的编制依据是会计恒等式
  • 哪些会计凭证可以抵扣进项税
  • 保险公司的业务分为
  • window10 bitlocker
  • centos7怎么关闭端口
  • 怎样让windows media player播放mkv文件
  • 对于微软用户来说,为了防止计算机意外故障
  • win 2008
  • ubuntu zed
  • centos san
  • windows自带的碎片整理程序
  • win10 记笔记
  • centos设置hostname
  • mac如何恢复已删除文件
  • 怎么使用mac打电话
  • xp开机启动项在哪里设置方法
  • Win7 64位操作系统怎么使用DVD刻录光驱复制软件
  • windowxp怎么取消开机密码
  • 一开机弹出个微软重新设定
  • Linux基础与应用开发指南pdf百度云
  • win7开启路由功能
  • win7宽带连接错误813怎么解决办法
  • HTML文档中的头部(head)内容一般包含什么
  • jquery右击事件
  • svn服务端启动
  • jquery插件怎么用到自己的网站
  • node作为中间件做接口转发
  • border-radius在Android下的几个BUG
  • 怎么查税务专管员是谁的名字
  • 新都税务局咨询电话
  • 公共基础设施项目所得税优惠目录
  • 免责声明:网站部分图片文字素材来源于网络,如有侵权,请及时告知,我们会第一时间删除,谢谢! 邮箱:opceo@qq.com

    鄂ICP备2023003026号

    网站地图: 企业信息 工商信息 财税知识 网络常识 编程技术

    友情链接: 武汉网站建设