将安装包放入opt目录下,进行解压
复制yum install -y automake autotools-dev binutils bzip2 elfutils expat \ gawk gcc gcc-multilib g++-multilib lib32ncurses5 lib32z1 \ ksh less lib32z1 libaio1 libaio-dev libc6-dev libc6-dev-i386 \ libc6-i386 libelf-dev libltdl-dev libodbcinstq4-1 libodbcinstq4-1:i386 \ libpth-dev libpthread-stubs0-dev libstdc++5 make openssh-server rlwrap \ rpm sysstat unixodbc unixodbc-dev unzip x11-utils zlibc unzip cifs-utils \ libXext.x86_64 glibc.i686
到crt下

会进行安装依赖包

完成之后使用

执行之后会有一个is this ok 输入y 进行更新

用户的id是502 用户组的名字是oinstall
下面的503都是类似的创建组

输入更改密码
设置八位密码

切换使用su命令

操作用户:oracle
操作目录:/home/oracle
将Oracle 11gR2安装文件上传(可以使用sftp上传)到该操作目录下面,然后顺序解压安装文件到该目录
放入之后进行查看

之后进行解压

unzip linux.x64_11gR2_database_1of2.zip
unzip linux.x64_11gR2_database_2of2.zip

修改安全设置
操作用户:root
操作文件:/etc/security/limits.conf

进入root,因为Oracle没权限

vi /etc/security/limits.conf

在文件最后追加如下内容(vi使用方法略):oracle              soft      nproc 2047
oracle              hard    nproc  16384
oracle              soft      nofile  1024
oracle              hard    nofile  65536
oracle              soft    stack  10240

再次进入Oracle中进行修改

之后执行

mkdir  -p ~/tools/oracle11g

下一步,还是在Oracle操作用户下操作,修改环境变量

vi ~/.bash_profile

export ORACLE_BASE=/home/oracle/tools/oracle11g
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export ORACLE_SID=orcl
export ORACLE_UNQNAME=orcl
export NLS_LANG=.AL32UTF8
export PATH=${PATH}:${ORACLE_HOME}/bin/:$ORACLE_HOME/lib64;

之后执行source ~/.bash_profile,使得配置生效

以后每次重新登录不需要重新设置,环境变量将自动加载。

关闭防火墙

systemctl stop firewalld.servicesystemctl disable firewalld.service

完成之后定义安装响应文件

在Oracle操作用户下,进入/home/oracle目录下,

cp /home/oracle/database/response/db_install.rsp .

使用vi编辑器,编辑内容

vi db_install.rsp

在db_install.rsp中编辑内容

####################################################################
## Copyright(c) Oracle Corporation 1998,2008. All rights reserved.##
##                                                                ##
## Specify values for the variables listed below to customize    ##
## your installation.                                            ##
##                                                                ##
## Each variable is associated with a comment. The comment        ##
## can help to populate the variables with the appropriate        ##
## values.   ##
##                                                                ##
## IMPORTANT NOTE: This file contains plain text passwords and    ##
## should be secured to have read permission only by oracle user  ##
## or db administrator who owns this installation.                ##
##                                                                ##
####################################################################
#------------------------------------------------------------------------------
# Do not change the following system generated value.
#------------------------------------------------------------------------------
oracle.install.responseFileVersion=/oracle/install/rspfmt_dbinstall_response_schema_v11_2_0
#------------------------------------------------------------------------------
# Specify the installation option.
# It can be one of the following:
# 1. INSTALL_DB_SWONLY
# 2. INSTALL_DB_AND_CONFIG
# 3. UPGRADE_DB
#-------------------------------------------------------------------------------
oracle.install.option=INSTALL_DB_AND_CONFIG
#-------------------------------------------------------------------------------
# Specify the hostname of the system as set during the install. It can be used
# to force the installation to use an alternative hostname rather than using the
# first hostname found on the system. (e.g., for systems with multiple hostnames
# and network interfaces)
#-------------------------------------------------------------------------------
ORACLE_HOSTNAME=localhost
#-------------------------------------------------------------------------------
# Specify the Unix group to be set for the inventory directory.
#-------------------------------------------------------------------------------
UNIX_GROUP_NAME=oinstall
#-------------------------------------------------------------------------------
# Specify the location which holds the inventory files.
#-------------------------------------------------------------------------------
INVENTORY_LOCATION=/home/oracle/tools/oraInventory
#-------------------------------------------------------------------------------
# Specify the languages in which the components will be installed.
#
# en  : English                  ja  : Japanese
# fr  : French                  ko  : Korean
# ar  : Arabic                  es  : Latin American Spanish
# bn  : Bengali                  lv  : Latvian
# pt_BR: Brazilian Portuguese    lt  : Lithuanian
# bg  : Bulgarian                ms  : Malay
# fr_CA: Canadian French          es_MX: Mexican Spanish
# ca  : Catalan                  no  : Norwegian
# hr  : Croatian                pl  : Polish
# cs  : Czech                    pt  : Portuguese
# da  : Danish                  ro  : Romanian
# nl  : Dutch                    ru  : Russian
# ar_EG: Egyptian                zh_CN: Simplified Chinese
# en_GB: English (Great Britain)  sk  : Slovak
# et  : Estonian                sl  : Slovenian
# fi  : Finnish                  es_ES: Spanish
# de  : German                  sv  : Swedish
# el  : Greek                    th  : Thai
# iw  : Hebrew                  zh_TW: Traditional Chinese
# hu  : Hungarian                tr  : Turkish
# is  : Icelandic                uk  : Ukrainian
# in  : Indonesian              vi  : Vietnamese
# it  : Italian
#
# Example : SELECTED_LANGUAGES=en,fr,ja
#------------------------------------------------------------------------------
SELECTED_LANGUAGES=en,zh_CN
#------------------------------------------------------------------------------
# Specify the complete path of the Oracle Home.
#------------------------------------------------------------------------------
ORACLE_HOME=/home/oracle/tools/oracle11g/product/11.2.0/dbhome_1
#------------------------------------------------------------------------------
# Specify the complete path of the Oracle Base.
#------------------------------------------------------------------------------
ORACLE_BASE=/home/oracle/tools/oracle11g
#------------------------------------------------------------------------------
# Specify the installation edition of the component.
#
# The value should contain only one of these choices.
# EE    : Enterprise Edition
# SE    : Standard Edition
# SEONE  : Standard Edition One
# PE    : Personal Edition (WINDOWS ONLY)
#------------------------------------------------------------------------------
oracle.install.db.InstallEdition=EE
#------------------------------------------------------------------------------
# This variable is used to enable or disable custom install.
#
# true  : Components mentioned as part of 'customComponents' property
#        are considered for install.
# false : Value for 'customComponents' is not considered.
#------------------------------------------------------------------------------
oracle.install.db.isCustomInstall=false
#------------------------------------------------------------------------------
# This variable is considered only if 'IsCustomInstall' is set to true.
#
# Description: List of Enterprise Edition Options you would like to install.
#
#              The following choices are available. You may specify any
#              combination of these choices.  The components you choose should
#              be specified in the form "internal-component-name:version"
#              Below is a list of components you may specify to install.
#
#              oracle.rdbms.partitioning:11.2.0.1.0 - Oracle Partitioning
#              oracle.rdbms.dm:11.2.0.1.0 - Oracle Data Mining
#              oracle.rdbms.dv:11.2.0.1.0 - Oracle Database Vault
#              oracle.rdbms.lbac:11.2.0.1.0 - Oracle Label Security
#              oracle.rdbms.rat:11.2.0.1.0 - Oracle Real Application Testing
#              oracle.oraolap:11.2.0.1.0 - Oracle OLAP
#------------------------------------------------------------------------------
oracle.install.db.customComponents=oracle.server:11.2.0.1.0,oracle.sysman.ccr:10.2.7.0.0,oracle.xdk:11.2.0.1.0,oracle.rdbms.oci:11.2.0.1.0,oracle.network:11.2.0.1.0,oracle.network.listener:11.2.0.1.0,oracle.rdbms:11.2.0.1.0,oracle.options:11.2.0.1.0,oracle.rdbms.partitioning:11.2.0.1.0,oracle.oraolap:11.2.0.1.0,oracle.rdbms.dm:11.2.0.1.0,oracle.rdbms.dv:11.2.0.1.0,orcle.rdbms.lbac:11.2.0.1.0,oracle.rdbms.rat:11.2.0.1.0
###############################################################################
#                                                                            #
# PRIVILEGED OPERATING SYSTEM GROUPS                                        #
# ------------------------------------------                                  #
# Provide values for the OS groups to which OSDBA and OSOPER privileges      #
# needs to be granted. If the install is being performed as a member of the  #
# group "dba", then that will be used unless specified otherwise below.       #
#                                                                            #
###############################################################################
#------------------------------------------------------------------------------
# The DBA_GROUP is the OS group which is to be granted OSDBA privileges.
#------------------------------------------------------------------------------
oracle.install.db.DBA_GROUP=dba
#------------------------------------------------------------------------------
# The OPER_GROUP is the OS group which is to be granted OSOPER privileges.
#------------------------------------------------------------------------------
oracle.install.db.OPER_GROUP=oper
#------------------------------------------------------------------------------
# Specify the cluster node names selected during the installation.
#------------------------------------------------------------------------------
oracle.install.db.CLUSTER_NODES=
#------------------------------------------------------------------------------
# Specify the type of database to create.
# It can be one of the following:
# - GENERAL_PURPOSE/TRANSACTION_PROCESSING
# - DATA_WAREHOUSE
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.type=GENERAL_PURPOSE
#------------------------------------------------------------------------------
# Specify the Starter Database Global Database Name.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.globalDBName=orcl
#------------------------------------------------------------------------------
# Specify the Starter Database SID.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.SID=orcl
#------------------------------------------------------------------------------
# Specify the Starter Database character set.
#
# It can be one of the following:
# AL32UTF8, WE8ISO8859P15, WE8MSWIN1252, EE8ISO8859P2,
# EE8MSWIN1250, NE8ISO8859P10, NEE8ISO8859P4, BLT8MSWIN1257,
# BLT8ISO8859P13, CL8ISO8859P5, CL8MSWIN1251, AR8ISO8859P6,
# AR8MSWIN1256, EL8ISO8859P7, EL8MSWIN1253, IW8ISO8859P8,
# IW8MSWIN1255, JA16EUC, JA16EUCTILDE, JA16SJIS, JA16SJISTILDE,
# KO16MSWIN949, ZHS16GBK, TH8TISASCII, ZHT32EUC, ZHT16MSWIN950,
# ZHT16HKSCS, WE8ISO8859P9, TR8MSWIN1254, VN8MSWIN1258
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.characterSet=AL32UTF8
#------------------------------------------------------------------------------
# This variable should be set to true if Automatic Memory Management
# in Database is desired.
# If Automatic Memory Management is not desired, and memory allocation
# is to be done manually, then set it to false.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.memoryOption=true
#------------------------------------------------------------------------------
# Specify the total memory allocation for the database. Value(in MB) should be
# at least 256 MB, and should not exceed the total physical memory available
# on the system.
# Example: oracle.install.db.config.starterdb.memoryLimit=512
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.memoryLimit=512
#------------------------------------------------------------------------------
# This variable controls whether to load Example Schemas onto the starter
# database or not.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.installExampleSchemas=false
#------------------------------------------------------------------------------
# This variable includes enabling audit settings, configuring password profiles
# and revoking some grants to public. These settings are provided by default.
# These settings may also be disabled.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.enableSecuritySettings=true
###############################################################################
#                                                                            #
# Passwords can be supplied for the following four schemas in the       #
# starter database:            #
#  SYS                                                                      #
#  SYSTEM                                                                    #
#  SYSMAN (used by Enterprise Manager)                                      #
#  DBSNMP (used by Enterprise Manager)                                      #
#                                                                            #
# Same password can be used for all accounts (not recommended)       #
# or different passwords for each account can be provided (recommended)      #
#                                                                            #
###############################################################################
#------------------------------------------------------------------------------
# This variable holds the password that is to be used for all schemas in the
# starter database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.password.ALL=Oracle#123456
#-------------------------------------------------------------------------------
# Specify the SYS password for the starter database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.password.SYS=
#-------------------------------------------------------------------------------
# Specify the SYSTEM password for the starter database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.password.SYSTEM=
#-------------------------------------------------------------------------------
# Specify the SYSMAN password for the starter database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.password.SYSMAN=
#-------------------------------------------------------------------------------
# Specify the DBSNMP password for the starter database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.password.DBSNMP=
#-------------------------------------------------------------------------------
# Specify the management option to be selected for the starter database.
# It can be one of the following:
# 1. GRID_CONTROL
# 2. DB_CONTROL
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.control=DB_CONTROL
#-------------------------------------------------------------------------------
# Specify the Management Service to use if Grid Control is selected to manage
# the database.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.gridcontrol.gridControlServiceURL=
#-------------------------------------------------------------------------------
# This variable indicates whether to receive email notification for critical
# alerts when using DB control.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.dbcontrol.enableEmailNotification=false
#-------------------------------------------------------------------------------
# Specify the email address to which the notifications are to be sent.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.dbcontrol.emailAddress=test@163.com
#-------------------------------------------------------------------------------
# Specify the SMTP server used for email notifications.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.dbcontrol.SMTPServer=
###############################################################################
#                                                                            #
# SPECIFY BACKUP AND RECOVERY OPTIONS                                      #
# ------------------------------------                               #
# Out-of-box backup and recovery options for the database can be mentioned    #
# using the entries below.       #
#                                                                            #
###############################################################################
#------------------------------------------------------------------------------
# This variable is to be set to false if automated backup is not required. Else
# this can be set to true.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.automatedBackup.enable=false
#------------------------------------------------------------------------------
# Regardless of the type of storage that is chosen for backup and recovery, if
# automated backups are enabled, a job will be scheduled to run daily at
# 2:00 AM to backup the database. This job will run as the operating system
# user that is specified in this variable.
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.automatedBackup.osuid=
#-------------------------------------------------------------------------------
# Regardless of the type of storage that is chosen for backup and recovery, if
# automated backups are enabled, a job will be scheduled to run daily at
# 2:00 AM to backup the database. This job will run as the operating system user
# specified by the above entry. The following entry stores the password for the
# above operating system user.
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.automatedBackup.ospwd=
#-------------------------------------------------------------------------------
# Specify the type of storage to use for the database.
# It can be one of the following:
# - FILE_SYSTEM_STORAGE
# - ASM_STORAGE
#------------------------------------------------------------------------------
oracle.install.db.config.starterdb.storageType=FILE_SYSTEM_STORAGE
#-------------------------------------------------------------------------------
# Specify the database file location which is a directory for datafiles, control
# files, redo logs.
#
# Applicable only when oracle.install.db.config.starterdb.storage=FILE_SYSTEM
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.fileSystemStorage.dataLocation=/home/oracle/tools/oracle11g/oradata
#-------------------------------------------------------------------------------
# Specify the backup and recovery location.
#
# Applicable only when oracle.install.db.config.starterdb.storage=FILE_SYSTEM
#-------------------------------------------------------------------------------
oracle.install.db.config.starterdb.fileSystemStorage.recoveryLocation=/home/oracle/tools/oracle11g/fast_recovery_area
#-------------------------------------------------------------------------------
# Specify the existing ASM disk groups to be used for storage.
#
# Applicable only when oracle.install.db.config.starterdb.storage=ASM
#-------------------------------------------------------------------------------
oracle.install.db.config.asm.diskGroup=
#-------------------------------------------------------------------------------
# Specify the password for ASMSNMP user of the ASM instance.
#
# Applicable only when oracle.install.db.config.starterdb.storage=ASM_SYSTEM
#-------------------------------------------------------------------------------
oracle.install.db.config.asm.ASMSNMPPassword=
#------------------------------------------------------------------------------
# Specify the My Oracle Support Account Username.
#
#  Example  : MYORACLESUPPORT_USERNAME=metalink
#------------------------------------------------------------------------------
MYORACLESUPPORT_USERNAME=
#------------------------------------------------------------------------------
# Specify the My Oracle Support Account Username password.
#
# Example    : MYORACLESUPPORT_PASSWORD=password
#------------------------------------------------------------------------------
MYORACLESUPPORT_PASSWORD=
#------------------------------------------------------------------------------
# Specify whether to enable the user to set the password for
# My Oracle Support credentials. The value can be either true or false.
# If left blank it will be assumed to be false.
#
# Example    : SECURITY_UPDATES_VIA_MYORACLESUPPORT=true
#------------------------------------------------------------------------------
SECURITY_UPDATES_VIA_MYORACLESUPPORT=
#------------------------------------------------------------------------------
# Specify whether user wants to give any proxy details for connection.
# The value can be either true or false. If left blank it will be assumed
# to be false.
#
# Example    : DECLINE_SECURITY_UPDATES=false
#------------------------------------------------------------------------------
DECLINE_SECURITY_UPDATES=true
#------------------------------------------------------------------------------
# Specify the Proxy server name. Length should be greater than zero.
#
# Example    : PROXY_HOST=proxy.domain.com
#------------------------------------------------------------------------------
PROXY_HOST=
#------------------------------------------------------------------------------
# Specify the proxy port number. Should be Numeric and atleast 2 chars.
#
# Example    : PROXY_PORT=25
#------------------------------------------------------------------------------
PROXY_PORT=
#------------------------------------------------------------------------------
# Specify the proxy user name. Leave PROXY_USER and PROXY_PWD
# blank if your proxy server requires no authentication.
#
# Example    : PROXY_USER=username
#------------------------------------------------------------------------------
PROXY_USER=
#------------------------------------------------------------------------------
# Specify the proxy password. Leave PROXY_USER and PROXY_PWD
# blank if your proxy server requires no authentication.
#
# Example    : PROXY_PWD=password
#------------------------------------------------------------------------------
PROXY_PWD=

其中有一个设置oracle数据库的密码设置为

也可以再次打开fx,可以事先写好db_install.rsp,将文件存入oracle用户的oracle目录下

之后执行静默安装,oracle 11gr2

./runInstaller -silent -ignoreSysPrereqs -responseFile /home/oracle/db_install.rsp

记得是oracle用户下,使用su oracle 进入oracle 之后,使用 cd ~ 进入 home/oracle/下,在使用cd database进入/home/oracle/database

之后在当前目录下执行,./runInstaller -silent -ignoreSysPrereqs -responseFile /home/oracle/db_install.rsp

当执行之后,会出现一个日志文件。
再次打开一个crt,使用su oracle 更改用户,然后使用cd 进入相对应日志文件的目录下,cd /home/oracle/tools/oraInventory/logs执行输入tail -1000f 加入日志文件名 tail -1000f installActions2018-11-05_11-22-43AM.log

之后就可以在另外一个crt看到安装日志文件,会安装比较慢,有耐心的等待,但在旧的crt中看到successful的时候,就代表服务已经成功

之后再进行安装oracleclient

对于解压安装win64_11gR2_client推荐博文安装oracleclient图文步骤

解压PLSQL

点击plsqldev1204,进行安装

安装完之后进行配置,使用之前安装的plsqldev1204其中有个安装路径带有app的路径,按照我截图的图片找到相对应的文件,(自己选择的目录),每个人目录不一样,只要找到tnsnames.ora这个文件就可以了

配置文件内容

之后进入crt进行配置,如果重启了服务器重启过,环境变量要重新source一下。执行以下命令使其生效:

source /home/oracle/.bash_profile

如果在下次连接时候,进入sqlplus模式的时候,未找到指令,则就要在执行一次source
然后连接,在Oracle用户下进行操作su oracle必须进入oracle用户下进入sqlplus模式,不然会被权限限制

进入sqlplus模式

sqlplus  /nolog

使用管理员权限输入

connect /as sysdba

启动服务

startup

启动服务之后,使用quit退出sqlplus模式
开启监听

lsnrctl

执行之后编辑命令

start

**注意:**也可以在sqlplus模式下使用下面命令关闭服务

Shutdown

开启监听
退出sqlplus模式

如果在下次需要进行开启的时候,则需要进行配置环境重新srouce一下

可以使用ps -ef | grep oracle查看oracle进程

在centos 7中安装Oracle相关推荐

  1. Centos 7 中安装 Oracle 11g R2数据库【超详细】

    一些话 安装过程一定要有耐心,遇到问题先上网查,很有可能会有各种报错 这个软件可以说是安装起来比较麻烦的,很多人安装了几天才装好 本篇文章适合模块和图片结合看  先把整篇文章看一遍过一遍了解是什么情况 ...

  2. CentOS上快速安装Oracle服务器脚本

    CentOS上快速安装Oracle服务器脚本 配置repos源 # 注释下列代码,可能导致源问题 # cd /etc/yum.repos.d # wget http://yum.oracle.com/ ...

  3. CentOS Stream 8 安装Oracle 19C (静默模式)

    CentOS Stream 8 安装Oracle 19C (静默模式) 1.提前准备工作 说明:必须严格遵守用户规则去创建目录,否则会导致缺少目录权限进而影响安装! 安装以下软件包最新版本(注意:如果 ...

  4. 在 CentOS 7 中安装 Nextcloud

    Nextcloud 是一款自由 (开源) 的类 Dropbox 软件,由 ownCloud 分支演化形成.它使用 PHP 和 JavaScript 编写,支持多种数据库系统,比如 MySQL/Mari ...

  5. CentOS 7.2安装Oracle数据库

    1   安装环境 本文在虚拟机CentOS系统上安装oracle数据库,具体版本信息如下 软件  版本       文件名 备注 Vmware workstation 12.0.0 VMware-wo ...

  6. 如何在 CentOS 7 中安装或升级最新的内核

    转 原创 2017-03-19 译者:geekpi Linux中国 随着新的设备和技术定期出来,如果我们想充分利用它们,保持最新的内核就很重要.此外,更新内核将帮助我们利用新的内核函数,并保护自己免受 ...

  7. 在CentOS 7中安装与配置Tomcat-8方法

    安装前提 在CentOS 7中安装与配置JDK8 安装tomcat  apache-tomcat-8.0.14.tar.gz文件上传到/usr/local中执行以下操作: [root@localhos ...

  8. CentOS 8中安装Docker出现和Podman冲突

    感谢这位博主的文章: CentOS 8中安装Docker出现和Podman冲突_ywyngq的博客-CSDN博客https://blog.csdn.net/ywyngq/article/details ...

  9. 在Win7中安装Oracle 10g时检测报错的解决办法

    在Windows 7中安装Oracle 10g. 使用的Orcale版本是10g. 步骤1: 在Orcale官网上下载,下载地址为:http://download.oracle.com/otn/nt/ ...

最新文章

  1. 上传程序网站至服务器
  2. You are using pip version 8.1.1, however version 20.1.1 is available
  3. QT-- MainWindow外的cpp文件调用ui
  4. ERP流程入门_从会计分录理解企业基本流程[转]
  5. RabbitMQ从入门到精通
  6. 判断当前窗口是否是全屏的山寨版和官方版
  7. 工具 | Axure基础操作 No.6
  8. HTML 基础【1】 -- 入门介绍 / 基本结构 / 块级标签 / 行内标签
  9. u盘插在电脑上灯亮没有反应_U盘插入电脑指示灯一直闪烁却不显示的解决方法...
  10. MediCool天使投资计划
  11. Feign原理:current list of Servers哪里来的
  12. accept搭配用法_accept for的用法与搭配
  13. excel打印预览在哪里_简单实用的excel打印技巧 建议收藏
  14. python第三章_Python学习(第三章)
  15. 利用logic friday 把分组密码Present的S盒转化成布尔函数
  16. linux下安装pymssql
  17. float 或者 flex 换行(打工人的愤怒)
  18. JDK8JDK17(windows-x64) 下载及环境配置
  19. 蓝桥杯 java 放麦子_蓝桥杯——舍罕王赏麦子
  20. TeXstudio编辑中文时文字下方出现红色波浪符的问题

热门文章

  1. 世界最流行的php框架排名_推荐20个最近很流行的优秀PHP框架
  2. WebRTC视频会议案例-APP(Flutter+Golang)
  3. uni-app音频组件控制的使用
  4. lwip网络通信socket_LWIP之SOCKET编程
  5. Python 编写程序,输出所有由1、2、3、4这4个数字组成的素数,且每个素数中每个数字只用一次
  6. c语言判断单链表是否有环,如何判断链表有环并计算环的长度
  7. java中推送异常消息到钉钉群
  8. 【原创】运维的终点是开发~chatGPT告诉你真相
  9. js 将数字转成 k w 方式显示
  10. 转技术贴:一个动车司机对723撞车事故的分析