活动介绍
file-type

Webpack符号链接插件:Symlink Webpack插件使用详解

下载需积分: 50 | 28KB | 更新于2024-12-14 | 8 浏览量 | 0 下载量 举报 收藏
download 立即下载
Webpack是一个强大的模块打包器和静态模块构建工具,它主要用于前端开发中,将各种静态资源(如JavaScript、图片、样式表等)进行转换、打包、压缩优化等处理,最终生成浏览器可以识别并加载的静态资源。在Webpack的使用过程中,会遇到各种需求,如资源文件的优化、静态资源的管理、特定文件的处理等。 symlink-webpack-plugin是Webpack的一个插件,它允许开发者在Webpack生成的文件之间建立符号链接。符号链接是一种特殊的文件类型,它指向另一个文件或目录的路径,并且可以提供对目标文件或目录的快捷访问,类似于Windows系统中的快捷方式。使用符号链接可以帮助开发者在文件系统中以非线性的方式组织项目文件,从而简化文件的访问和管理。 通过npm安装symlink-webpack-plugin插件非常简单,只需在命令行中执行npm i -D symlink-webpack-plugin命令即可。其中,-D参数代表开发依赖(devDependencies),意味着该插件仅在开发环境中使用。 在Webpack配置文件中引入并使用该插件的代码如下所示: ```javascript const SymlinkWebpackPlugin = require('symlink-webpack-plugin'); module.exports = { // ...其他配置 plugins: [ new SymlinkWebpackPlugin({ origin: 'index.html', symlink: '200.html' }) ] }; ``` 以上配置使得在输出目录中创建一个名为“200.html”的符号链接,它指向同一个输出目录下的“index.html”文件。这样,在浏览器或其他工具访问“200.html”时,实际上是访问“index.html”的内容。 当然,配置symlink-webpack-plugin时可以更灵活。您可以将配置项指定为数组形式,这样可以在同一个Webpack配置中创建多个符号链接。不过,这里给出的示例文件名称列表中只包含了一个名为“symlink-webpack-plugin-main”的文件,这意味着实际的实现代码可能只涉及单一配置。如果需要创建多个符号链接,可以在plugins数组中添加更多的SymlinkWebpackPlugin实例,每个实例中指定不同的origin和symlink。 该插件支持的标签包括了webpack、webpack-plugin、symlink和static-site-generation等,这些标签指向了该插件的一些关键特性。例如webpack-plugin标签表明它是一个Webpack插件;symlink表明它涉及符号链接的创建;static-site-generation表明它可能被用于静态站点的生成,因为静态网站生成器经常需要在构建过程中创建重定向或其他类似符号链接的机制。 在实际应用中,使用symlink-webpack-plugin可以带来诸多好处,比如简化开发环境的文件结构、提高开发效率、减少磁盘I/O操作等。特别是在使用Webpack进行静态网站生成时,可以通过符号链接来创建URL重定向规则,避免在构建过程中生成大量的冗余文件,从而优化构建输出。 总结来说,symlink-webpack-plugin是一个专为Webpack环境设计的插件,它通过创建符号链接来优化项目结构和资源管理,使得开发者能够更加高效地组织和访问构建生成的文件。它适用于需要高度自定义构建输出文件结构的场景,尤其是静态网站生成项目。在使用该插件时,需要确保正确安装并按照Webpack配置规则引入,同时根据实际需要进行合适的配置。

相关推荐

filetype

数据从 hive 复制到 mysql 中报错hadoop@t3l-VirtualBox:/usr/local/sqoop$ ./bin/sqoop export --connect jdbc:mysql://localhost:3306/dblab --username root --password '*-+' --table user_action --export-dir '/user/hive/warehouse/dblab.db/user_action' --fields-terminated-by '\t'; Warning: /usr/local/sqoop/../hcatalog does not exist! HCatalog jobs will fail. Please set $HCAT_HOME to the root of your HCatalog installation. Warning: /usr/local/sqoop/../accumulo does not exist! Accumulo imports will fail. Please set $ACCUMULO_HOME to the root of your Accumulo installation. Warning: /usr/local/sqoop/../zookeeper does not exist! Accumulo imports will fail. Please set $ZOOKEEPER_HOME to the root of your Zookeeper installation. 错误: 找不到或无法加载主类 org.apache.hadoop.hbase.util.GetJavaProperty 2025-08-08 16:00:57,770 INFO sqoop.Sqoop: Running Sqoop version: 1.4.6 2025-08-08 16:00:57,835 WARN tool.BaseSqoopTool: Setting your password on the command-line is insecure. Consider using -P instead. 2025-08-08 16:00:58,042 INFO manager.MySQLManager: Preparing to use a MySQL streaming resultset. 2025-08-08 16:00:58,042 INFO tool.CodeGenTool: Beginning code generation Fri Aug 08 16:00:58 CST 2025 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. 2025-08-08 16:00:59,101 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `user_action` AS t LIMIT 1 2025-08-08 16:00:59,171 INFO manager.SqlManager: Executing SQL statement: SELECT t.* FROM `user_action` AS t LIMIT 1 2025-08-08 16:00:59,210 INFO orm.CompilationManager: HADOOP_MAPRED_HOME is /usr/local/hadoop 注: /tmp/sqoop-hadoop/compile/e5381a60ac3daedca9188e7ac7d80584/user_action.java使用或覆盖了已过时的 API。 注: 有关详细信息, 请使用 -Xlint:deprecation 重新编译。 2025-08-08 16:01:01,847 INFO orm.CompilationManager: Writing jar file: /tmp/sqoop-hadoop/compile/e5381a60ac3daedca9188e7ac7d80584/user_action.jar 2025-08-08 16:01:01,853 INFO mapreduce.ExportJobBase: Beginning export of user_action 2025-08-08 16:01:01,854 INFO Configuration.deprecation: mapred.job.tracker is deprecated. Instead, use mapreduce.jobtracker.address 2025-08-08 16:01:02,095 INFO Configuration.deprecation: mapred.jar is deprecated. Instead, use mapreduce.job.jar 2025-08-08 16:01:03,097 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false 2025-08-08 16:01:03,334 INFO Configuration.deprecation: mapred.reduce.tasks.speculative.execution is deprecated. Instead, use mapreduce.reduce.speculative 2025-08-08 16:01:03,337 INFO Configuration.deprecation: mapred.map.tasks.speculative.execution is deprecated. Instead, use mapreduce.map.speculative 2025-08-08 16:01:03,342 INFO Configuration.deprecation: mapred.map.tasks is deprecated. Instead, use mapreduce.job.maps 2025-08-08 16:01:03,692 INFO impl.MetricsConfig: loaded properties from hadoop-metrics2.properties 2025-08-08 16:01:03,859 INFO impl.MetricsSystemImpl: Scheduled Metric snapshot period at 10 second(s). 2025-08-08 16:01:03,859 INFO impl.MetricsSystemImpl: JobTracker metrics system started 2025-08-08 16:01:04,058 INFO input.FileInputFormat: Total input files to process : 1 2025-08-08 16:01:04,065 INFO input.FileInputFormat: Total input files to process : 1 2025-08-08 16:01:04,168 INFO mapreduce.JobSubmitter: number of splits:4 2025-08-08 16:01:04,275 INFO Configuration.deprecation: mapred.map.tasks.speculative.execution is deprecated. Instead, use mapreduce.map.speculative 2025-08-08 16:01:04,481 INFO mapreduce.JobSubmitter: Submitting tokens for job: job_local1968709802_0001 2025-08-08 16:01:04,485 INFO mapreduce.JobSubmitter: Executing with tokens: [] 2025-08-08 16:01:04,820 INFO mapred.LocalDistributedCacheManager: Creating symlink: /usr/local/hadoop/tmp/mapred/local/1754640064639/libjars <- /usr/local/sqoop/libjars/* 2025-08-08 16:01:04,827 WARN fs.FileUtil: Command 'ln -s /usr/local/hadoop/tmp/mapred/local/1754640064639/libjars /usr/local/sqoop/libjars/*' failed 1 with: ln: 无法创建符号链接'/usr/local/sqoop/libjars/*': 没有那个文件或目录 2025-08-08 16:01:04,827 WARN mapred.LocalDistributedCacheManager: Failed to create symlink: /usr/local/hadoop/tmp/mapred/local/1754640064639/libjars <- /usr/local/sqoop/libjars/* 2025-08-08 16:01:04,827 INFO mapred.LocalDistributedCacheManager: Localized file:/tmp/hadoop/mapred/staging/hadoop1968709802/.staging/job_local1968709802_0001/libjars as file:/usr/local/hadoop/tmp/mapred/local/1754640064639/libjars 2025-08-08 16:01:04,958 INFO mapreduce.Job: The url to track the job: http://localhost:8080/ 2025-08-08 16:01:04,959 INFO mapreduce.Job: Running job: job_local1968709802_0001 2025-08-08 16:01:04,962 INFO mapred.LocalJobRunner: OutputCommitter set in config null 2025-08-08 16:01:04,990 INFO mapred.LocalJobRunner: OutputCommitter is org.apache.sqoop.mapreduce.NullOutputCommitter 2025-08-08 16:01:05,123 INFO mapred.LocalJobRunner: Waiting for map tasks 2025-08-08 16:01:05,130 INFO mapred.LocalJobRunner: Starting task: attempt_local1968709802_0001_m_000000_0 2025-08-08 16:01:05,245 INFO mapred.Task: Using ResourceCalculatorProcessTree : [ ] 2025-08-08 16:01:05,253 INFO mapred.MapTask: Processing split: Paths:/user/hive/warehouse/dblab.db/user_action/000000_0:0+3897281 2025-08-08 16:01:05,259 INFO Configuration.deprecation: map.input.file is deprecated. Instead, use mapreduce.map.input.file 2025-08-08 16:01:05,259 INFO Configuration.deprecation: map.input.start is deprecated. Instead, use mapreduce.map.input.start 2025-08-08 16:01:05,259 INFO Configuration.deprecation: map.input.length is deprecated. Instead, use mapreduce.map.input.length 2025-08-08 16:01:05,277 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false Fri Aug 08 16:01:05 CST 2025 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. 2025-08-08 16:01:05,392 INFO mapreduce.AutoProgressMapper: Auto-progress thread is finished. keepGoing=false 2025-08-08 16:01:05,396 INFO mapred.LocalJobRunner: Starting task: attempt_local1968709802_0001_m_000001_0 2025-08-08 16:01:05,398 INFO mapred.Task: Using ResourceCalculatorProcessTree : [ ] 2025-08-08 16:01:05,398 INFO mapred.MapTask: Processing split: Paths:/user/hive/warehouse/dblab.db/user_action/000000_0:3897281+3897281 2025-08-08 16:01:05,422 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false Fri Aug 08 16:01:05 CST 2025 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. 2025-08-08 16:01:05,509 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false 2025-08-08 16:01:05,515 INFO mapreduce.AutoProgressMapper: Auto-progress thread is finished. keepGoing=false 2025-08-08 16:01:05,523 INFO mapred.LocalJobRunner: Starting task: attempt_local1968709802_0001_m_000002_0 2025-08-08 16:01:05,527 INFO mapred.Task: Using ResourceCalculatorProcessTree : [ ] 2025-08-08 16:01:05,544 INFO mapred.MapTask: Processing split: Paths:/user/hive/warehouse/dblab.db/user_action/000000_0:7794562+3897281 2025-08-08 16:01:05,557 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false Fri Aug 08 16:01:05 CST 2025 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. 2025-08-08 16:01:05,635 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false 2025-08-08 16:01:05,648 INFO mapreduce.AutoProgressMapper: Auto-progress thread is finished. keepGoing=false 2025-08-08 16:01:05,652 INFO mapred.LocalJobRunner: Starting task: attempt_local1968709802_0001_m_000003_0 2025-08-08 16:01:05,655 INFO mapred.Task: Using ResourceCalculatorProcessTree : [ ] 2025-08-08 16:01:05,674 INFO mapred.MapTask: Processing split: Paths:/user/hive/warehouse/dblab.db/user_action/000000_0:11691843+3897281 2025-08-08 16:01:05,697 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false Fri Aug 08 16:01:05 CST 2025 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification. 2025-08-08 16:01:05,768 INFO sasl.SaslDataTransferClient: SASL encryption trust check: localHostTrusted = false, remoteHostTrusted = false 2025-08-08 16:01:05,782 INFO mapreduce.AutoProgressMapper: Auto-progress thread is finished. keepGoing=false 2025-08-08 16:01:05,790 INFO mapred.LocalJobRunner: map task executor complete. 2025-08-08 16:01:05,792 WARN mapred.LocalJobRunner: job_local1968709802_0001 java.lang.Exception: java.io.IOException: java.lang.ClassNotFoundException: user_action at org.apache.hadoop.mapred.LocalJobRunner$Job.runTasks(LocalJobRunner.java:492) at org.apache.hadoop.mapred.LocalJobRunner$Job.run(LocalJobRunner.java:552) Caused by: java.io.IOException: java.lang.ClassNotFoundException: user_action at org.apache.sqoop.mapreduce.TextExportMapper.setup(TextExportMapper.java:70) at org.apache.hadoop.mapreduce.Mapper.run(Mapper.java:143) at org.apache.sqoop.mapreduce.AutoProgressMapper.run(AutoProgressMapper.java:64) at org.apache.hadoop.mapred.MapTask.runNewMapper(MapTask.java:799) at org.apache.hadoop.mapred.MapTask.run(MapTask.java:347) at org.apache.hadoop.mapred.LocalJobRunner$Job$MapTaskRunnable.run(LocalJobRunner.java:271) at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511) at java.util.concurrent.FutureTask.run(FutureTask.java:266) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) at java.lang.Thread.run(Thread.java:748) Caused by: java.lang.ClassNotFoundException: user_action at java.net.URLClassLoader.findClass(URLClassLoader.java:381) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:338) at java.lang.ClassLoader.loadClass(ClassLoader.java:357) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:348) at org.apache.sqoop.mapreduce.TextExportMapper.setup(TextExportMapper.java:66) ... 10 more 2025-08-08 16:01:05,962 INFO mapreduce.Job: Job job_local1968709802_0001 running in uber mode : false 2025-08-08 16:01:05,965 INFO mapreduce.Job: map 0% reduce 0% 2025-08-08 16:01:05,967 INFO mapreduce.Job: Job job_local1968709802_0001 failed with state FAILED due to: NA 2025-08-08 16:01:05,973 INFO mapreduce.Job: Counters: 0 2025-08-08 16:01:06,018 WARN mapreduce.Counters: Group FileSystemCounters is deprecated. Use org.apache.hadoop.mapreduce.FileSystemCounter instead 2025-08-08 16:01:06,022 INFO mapreduce.ExportJobBase: Transferred 0 bytes in 2.6143 seconds (0 bytes/sec) 2025-08-08 16:01:06,036 WARN mapreduce.Counters: Group org.apache.hadoop.mapred.Task$Counter is deprecated. Use org.apache.hadoop.mapreduce.TaskCounter instead 2025-08-08 16:01:06,036 INFO mapreduce.ExportJobBase: Exported 0 records. 2025-08-08 16:01:06,036 ERROR tool.ExportTool: Error during export: Export job failed!

filetype

结合我们之前沟通及操作历史记录,就我以下系统及操作记录作出下一步操作指命,不要跨步,我会依据执行结果反馈给你,你再依据所有信息分板如何进行下一步操作。 硬件:斐讯N1盒子 底层ARMBIAN系统信息: _ _ _ ___ ___ /_\ _ _ _ __ | |__(_)__ _ _ _ / _ \/ __| / _ \| '_| ' \| '_ \ / _` | ' \ | (_) \__ \ /_/ \_\_| |_|_|_|_.__/_\__,_|_||_| \___/|___/ v25.08.0 for Aml.S905d running Armbian Linux 5.15.186-ophub Packages: Debian stable (bullseye) IPv4: (LAN) 192.168.1.7 (WAN) 113.78.***.*** Performance: Load: 14% Uptime: 2:05 Memory usage: 26% of 1.76G CPU temp: 49°C Usage of /: 42% of 6.4G storage/: 10% of 29G RX today: 303 MiB Commands: 1PANEL安装日志: [1Panel Log]: Docker 服务已成功重启。 设置 1Panel 端口 (默认是 14687): [1Panel Log]: 您设置的端口是: 14687 设置 1Panel 安全入口 (默认是 8382ffe897): haoyong [1Panel Log]: 您设置的面板安全入口是 haoyong 设置 1Panel 面板用户 (默认是 39e66cce8f): haoyong [1Panel Log]: 您设置的面板用户是 haoyong [1Panel Log]: 设置 1Panel 面板密码,设置后按回车键继续 (默认是 1f8ae2a537): ************** [1Panel Log]: 正在配置 1Panel 服务 Created symlink /etc/systemd/system/multi-user.target.wants/1panel-agent.service → /etc/systemd/system/1panel-agent.service. Created symlink /etc/systemd/system/multi-user.target.wants/1panel-core.service → /etc/systemd/system/1panel-core.service. [1Panel Log]: 正在启动 1Panel 服务 [1Panel Log]: 1Panel 服务已成功启动,正在继续执行后续配置,请稍候... [1Panel Log]: [1Panel Log]: =================感谢您的耐心等待,安装已完成================== [1Panel Log]: [1Panel Log]: 请使用您的浏览器访问面板: [1Panel Log]: 外部地址: http://113.78.237.211:14687/haoyong [1Panel Log]: 内部地址: http://192.168.1.7:14687/haoyong [1Panel Log]: 面板用户: haoyong [1Panel Log]: 面板密码: SANDking100005 [1Panel Log]: [1Panel Log]: 官方网站: https://1panel.cn [1Panel Log]: 项目文档: https://1panel.cn/docs [1Panel Log]: 代码仓库: https://github.com/1Panel-dev/1Panel [1Panel Log]: 前往 1Panel 官方论坛获取帮助: https://bbs.fit2cloud.com/c/1p/7 [1Panel Log]: [1Panel Log]: 如果您使用的是云服务器,请在安全组中打开端口 14687 [1Panel Log]: [1Panel Log]: 为了您的服务器安全,离开此屏幕后您将无法再次看到您的密码,请记住您的密码。 [1Panel Log]: [1Panel Log]: ================================================================ root@armbian:~# mysql安装内容: 安装 名称 mysql 版本 Root 密码 100005 端口 3306 容器名称 可以为空,为空自动生成 允许端口外部访问会放开防火墙端口 CPU 限制 0 核心数 限制为 0 则关闭限制,最大可用为 4核 内存限制 0 限制为 0 则关闭限制,最大可用为 1800.98MB 在应用启动之前执行 docker pull 来拉取镜像 编辑 compose 文件可能导致软件安装失败 系统相关检查如下: root@armbian:~# uname -m aarch64 root@armbian:~# uname -r 5.15.186-ophub root@armbian:~# lsb_release -a || cat /etc/os-release No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 11 (bullseye) Release: 11 Codename: bullseye root@armbian:~# free -h total used free shared buff/cache available Mem: 1.8Gi 447Mi 598Mi 19Mi 755Mi 1.2Gi Swap: 900Mi 0B 900Mi root@armbian:~# nproc nproc 4 4 root@armbian:~# free -h total used free shared buff/cache available Mem: 1.8Gi 445Mi 599Mi 19Mi 755Mi 1.2Gi Swap: 900Mi 0B 900Mi root@armbian:~# df -h / Filesystem Size Used Avail Use% Mounted on /dev/mmcblk2p2 6.4G 2.7G 3.7G 42% / root@armbian:~# sudo ss -tulpn | grep -E '80|443|3306|6379' tcp LISTEN 0 4096 0.0.0.0:14687 0.0.0.0:* users:(("1panel",pid=801,fd=11)) root@armbian:~# curl -I https://xibo.org.uk HTTP/2 301 server: nginx date: Sat, 19 Jul 2025 07:14:41 GMT content-type: text/html content-length: 169 location: https://xibosignage.com/ referrer-policy: no-referrer-when-downgrade strict-transport-security: max-age=31536000 root@armbian:~# 拉取源的测试如下: oot@armbian:~# docker images | grep hello-world hello-world latest f1f77a0f96b7 5 months ago 5.2kB root@armbian:~# docker images | grep hello-world hello-world latest f1f77a0f96b7 5 months ago 5.2kB root@armbian:~# docker history hello-world IMAGE CREATED CREATED BY SIZE COMMENT f1f77a0f96b7 5 months ago CMD ["/hello"] 0B buildkit.dockerfile.v0 <missing> 5 months ago COPY hello / # buildkit 5.2kB buildkit.dockerfile.v0 root@armbian:~# ^C 用1PANEL设置DOCKER及拉取MYSQL的操作日志: _ _ _ ___ ___ /_\ _ _ _ __ | |__(_)__ _ _ _ / _ \/ __| / _ \| '_| ' \| '_ \ / _` | ' \ | (_) \__ \ /_/ \_\_| |_|_|_|_.__/_\__,_|_||_| \___/|___/ v25.08.0 for Aml.S905d running Armbian Linux 5.15.186-ophub Packages: Debian stable (bullseye) IPv4: (LAN) 192.168.1.7 (WAN) 116.4.***.*** Performance: Load: 13% Uptime: 7:23 Memory usage: 27% of 1.76G CPU temp: 51°C Usage of /: 42% of 6.4G storage/: 19% of 29G RX today: 79 MiB Commands: Configuration : armbian-config Monitoring : htop root@armbian:~# docker run -d \ --name mysql \ -p 3306:3306 \ -v /mnt/docker/mysql/data:/var/lib/mysql \ -v /mnt/docker/mysql/conf:/etc/mysql/conf.d \ -v /mnt/docker/mysql/log:/var/log/mysql \ -e MYSQL_ROOT_PASSWORD=100005 \ --memory=512m \ --cpus=2 \ --restart=always \ mysql:8.0-oracle Unable to find image 'mysql:8.0-oracle' locally 8.0-oracle: Pulling from library/mysql 66c8c73e9d3d: Pull complete e45847b03d78: Pull complete 87befc648177: Pull complete 008e8e968476: Pull complete a72970729c8f: Pull complete 89b1faffd43a: Pull complete 2bd146ae1d6c: Pull complete a0967528f1a2: Pull complete 38c697cea99a: Pull complete fab608026c1e: Pull complete 24e041f1adac: Pull complete Digest: sha256:63823b8e2cbe4ae0c558155e02d00beba56130fbc3d147efccbdb328ae2dbb9e Status: Downloaded newer image for mysql:8.0-oracle 67460db937cbeedc95691f01d4b961e6a42616b45f60cd62107f73bd48b2b2b9 root@armbian:~# ^C root@armbian:~# docker ps -a | grep mysql 67460db937cb mysql:8.0-oracle "docker-entrypoint.s…" 8 minutes ago Up 6 minutes 0.0.0.0:3306->3306/tcp, 33060/tcp mysql root@armbian:~# docker logs mysql 2025-07-19 10:55:41+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.42-1.el9 started. 2025-07-19 10:55:43+00:00 [Note] [Entrypoint]: Switching to dedicated user 'mysql' 2025-07-19 10:55:43+00:00 [Note] [Entrypoint]: Entrypoint script for MySQL Server 8.0.42-1.el9 started. 2025-07-19 10:55:44+00:00 [Note] [Entrypoint]: Initializing database files 2025-07-19T10:55:44.643965Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead. 2025-07-19T10:55:44.644644Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.42) initializing of server in progress as process 82 2025-07-19T10:55:44.722791Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. 2025-07-19T10:55:48.060736Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. 2025-07-19T10:56:03.156308Z 6 [Warning] [MY-010453] [Server] root@localhost is created with an empty password ! Please consider switching off the --initialize-insecure option. 2025-07-19 10:56:16+00:00 [Note] [Entrypoint]: Database files initialized 2025-07-19 10:56:16+00:00 [Note] [Entrypoint]: Starting temporary server 2025-07-19T10:56:16.845924Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead. 2025-07-19T10:56:16.851097Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.42) starting as process 126 2025-07-19T10:56:16.917937Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. 2025-07-19T10:56:17.897029Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. 2025-07-19T10:56:21.388398Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. 2025-07-19T10:56:21.388602Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. 2025-07-19T10:56:21.415665Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory. 2025-07-19T10:56:21.548697Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: /var/run/mysqld/mysqlx.sock 2025-07-19T10:56:21.549457Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.42' socket: '/var/run/mysqld/mysqld.sock' port: 0 MySQL Community Server - GPL. 2025-07-19 10:56:21+00:00 [Note] [Entrypoint]: Temporary server started. '/var/lib/mysql/mysql.sock' -> '/var/run/mysqld/mysqld.sock' Warning: Unable to load '/usr/share/zoneinfo/iso3166.tab' as time zone. Skipping it. Warning: Unable to load '/usr/share/zoneinfo/leap-seconds.list' as time zone. Skipping it. Warning: Unable to load '/usr/share/zoneinfo/leapseconds' as time zone. Skipping it. Warning: Unable to load '/usr/share/zoneinfo/tzdata.zi' as time zone. Skipping it. Warning: Unable to load '/usr/share/zoneinfo/zone.tab' as time zone. Skipping it. Warning: Unable to load '/usr/share/zoneinfo/zone1970.tab' as time zone. Skipping it. 2025-07-19 10:56:44+00:00 [Note] [Entrypoint]: Stopping temporary server 2025-07-19T10:56:44.779995Z 10 [System] [MY-013172] [Server] Received SHUTDOWN from user root. Shutting down mysqld (Version: 8.0.42). 2025-07-19T10:56:46.899809Z 0 [System] [MY-010910] [Server] /usr/sbin/mysqld: Shutdown complete (mysqld 8.0.42) MySQL Community Server - GPL. 2025-07-19 10:56:47+00:00 [Note] [Entrypoint]: Temporary server stopped 2025-07-19 10:56:47+00:00 [Note] [Entrypoint]: MySQL init process done. Ready for start up. 2025-07-19T10:56:48.299792Z 0 [Warning] [MY-011068] [Server] The syntax '--skip-host-cache' is deprecated and will be removed in a future release. Please use SET GLOBAL host_cache_size=0 instead. 2025-07-19T10:56:48.305067Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.42) starting as process 1 2025-07-19T10:56:48.334120Z 1 [System] [MY-013576] [InnoDB] InnoDB initialization has started. 2025-07-19T10:56:49.180497Z 1 [System] [MY-013577] [InnoDB] InnoDB initialization has ended. 2025-07-19T10:56:54.411653Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. 2025-07-19T10:56:54.411875Z 0 [System] [MY-013602] [Server] Channel mysql_main configured to support TLS. Encrypted connections are now supported for this channel. 2025-07-19T10:57:02.537906Z 0 [Warning] [MY-011810] [Server] Insecure configuration for --pid-file: Location '/var/run/mysqld' in the path is accessible to all OS users. Consider choosing a different directory. 2025-07-19T10:57:02.670404Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Bind-address: '::' port: 33060, socket: /var/run/mysqld/mysqlx.sock 2025-07-19T10:57:02.670930Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.42' socket: '/var/run/mysqld/mysqld.sock' port: 3306 MySQL Community Server - GPL. root@armbian:~# docker exec -it mysql mysql -uroot -p100005 -e "SHOW DATABASES;" mysql: [Warning] Using a password on the command line interface can be insecure. +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ root@armbian:~# mysql -h 192.168.1.7 -P 3306 -uroot -p100005 Welcome to the MariaDB monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 8.0.42 MySQL Community Server - GPL Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MySQL [(none)]>到这里是什么意思,怎么操作

filetype

01-01 13:59:06.678967 1 1 I [ 3106.874830]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:06.685984 1 1 I [ 3106.881847]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:06.688757 1 1 W [ 3106.884620]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:06.689161 1 1 I [ 3106.885024]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:07.023596 13602 13602 E [ 3107.219459][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:07.063182 13602 13602 E [ 3107.259045][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:07.084823 13602 13602 E [ 3107.280686][ERROR]: OPLUS_CHG[MMS_GAUGE]([oplus_mms_gauge_update_cc][3883]): get battery cc error, rc=0 01-01 13:59:07.101110 13602 13602 E [ 3107.296973][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:07.116107 13680 13680 I [ 3107.311970]: [INFO]: OPLUS_CHG[CHG_COMM]([oplus_comm_smooth_to_soc][3142]): soc[0 3 100 100 100 100] avg[0 1 0 0 0] fifo[100 100 100 100] 01-01 13:59:07.116188 13680 13680 E [ 3107.312051][ERROR]: OPLUS_CHG[CHG_COMM]([oplus_comm_battery_notify_tbat_check][4799]): bat_temp(585) > 53'C 01-01 13:59:07.128010 516 516 I [ 3107.323873]: ///PD dbg info 122d 01-01 13:59:07.128029 516 516 I [ 3107.323892]< 3107.323>TCPC-TCPC: bat_update_work_func battery update soc = 100 01-01 13:59:07.128029 516 516 I [ 3107.323892]< 3107.323>TCPC-TCPC: bat_update_work_func Battery Idle 01-01 13:59:07.131843 12695 12695 I [ 3107.327706]: [INFO]: OPLUS_CHG[sc6607]:sc6607_reset_watchdog_timer: enter 01-01 13:59:07.159981 13913 13913 I [ 3107.355844]: [INFO]: OPLUS_CHG[sc6607]:sc6607_set_input_volt_limit: volt = 4700, val=0x7 01-01 13:59:07.166027 1434 1434 W [ 3107.361890]healthd: battery l=100 v=4416 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:07.179969 13680 13680 I [ 3107.375832]OPLUS_CHG[oplus_charge_info]: BATTERY[585 585 4416 4416 0 100 100 100 7368 7000 1 0x0], CHARGE[4470 0 1 0], WIRED[1 185 5107 500 3 0x0 0 0 0 2 0], WIRELESS[0 0 0 0 0 0x0 0 0 0], VOOC[0 0 0 0 0x0], UFCS[0 0 0 0x0], COMMON[8 0 5 0x100088 0 0 1 7000 100 0] 01-01 13:59:07.274454 13600 13600 I [ 3107.470317](virq: irq_count)- GICv3:arch_timer(11):1971560 GICv3:IPI(1):1737505 GICv3:IPI(2):897238 GICv3:IPI(6):333489 GICv3:glink-native-rpm-glink(33):161472 pmic_arb:pm-adc5(172):108727 GICv3:i2c_geni(180):107227 GICv3:i2c_geni(179):84340 GICv3:arch_mem_timer(13):81225 GICv3:mmc0(36):80879 01-01 13:59:07.274603 13600 13600 I [ 3107.470466](cpu: irq_count)- 0:1271515 1:1016677 2:1010488 3:1213493 4:298566 5:282403 6:268443 7:276907 01-01 13:59:07.274705 13600 13600 I [ 3107.470568](ipi: irq_count)- 0:1737505 1:897238 2:0 3:0 4:1957 5:333489 6:0 01-01 13:59:07.726521 1871 1871 I [ 3107.922384]: read descriptors 01-01 13:59:07.726669 1871 1871 I [ 3107.922532]: read strings 01-01 13:59:07.735964 1 1 I [ 3107.931827]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:07.751653 1 1 W [ 3107.947516]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:08.779235 1871 1871 I [ 3108.975098]: read descriptors 01-01 13:59:08.779393 1871 1871 I [ 3108.975256]: read strings 01-01 13:59:08.804696 1 1 W [ 3109.000559]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:09.833425 1871 1871 I [ 3110.029288]: read descriptors 01-01 13:59:09.834559 1871 1871 I [ 3110.030422]: read strings 01-01 13:59:09.843181 1 1 I [ 3110.039044]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:09.846371 1 1 I [ 3110.042234]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 1ms and failed: symlink() failed: File exists 01-01 13:59:09.847584 1 1 W [ 3110.043447]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:09.847773 1 1 I [ 3110.043636]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 0ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:10.865193 817 817 E [ 3111.061056][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:10.902853 1871 1871 I [ 3111.098716]: read descriptors 01-01 13:59:10.903019 1871 1871 I [ 3111.098882]: read strings 01-01 13:59:10.911364 1 1 I [ 3111.107227]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:10.919875 1 1 I [ 3111.115738]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:10.923961 1 1 W [ 3111.119824]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:10.924498 1 1 I [ 3111.120361]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 3ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:11.125117 8 8 E [ 3111.320980][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:11.151486 8 8 E [ 3111.347349][ERROR]: OPLUS_CHG[CW2217]([cw_update_data][525]): vol = 4415 current = 0 cap = 100 temp = 585 01-01 13:59:11.959919 1871 1871 I [ 3112.155782]: read descriptors 01-01 13:59:11.960022 1871 1871 I [ 3112.155885]: read strings 01-01 13:59:11.966123 1 1 I [ 3112.161986]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:11.973102 1 1 I [ 3112.168965]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 1ms and failed: symlink() failed: File exists 01-01 13:59:11.976702 1 1 W [ 3112.172565]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:11.977120 1 1 I [ 3112.172983]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:12.143321 13242 13242 E [ 3112.339184][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.181296 13242 13242 E [ 3112.377159][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.200908 13242 13242 E [ 3112.396771][ERROR]: OPLUS_CHG[MMS_GAUGE]([oplus_mms_gauge_update_cc][3883]): get battery cc error, rc=0 01-01 13:59:12.219789 13242 13242 E [ 3112.415652][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.235356 12809 12809 I [ 3112.431219]: [INFO]: OPLUS_CHG[CHG_COMM]([oplus_comm_smooth_to_soc][3142]): soc[0 3 100 100 100 100] avg[1 1 0 0 0] fifo[100 100 100 100] 01-01 13:59:12.235477 12809 12809 E [ 3112.431340][ERROR]: OPLUS_CHG[CHG_COMM]([oplus_comm_battery_notify_tbat_check][4799]): bat_temp(585) > 53'C 01-01 13:59:12.248278 516 516 I [ 3112.444141]: ///PD dbg info 122d 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.443>TCPC-TCPC: bat_update_work_func battery update soc = 100 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.444>TCPC-TCPC: bat_update_work_func Battery Idle 01-01 13:59:12.255329 11611 11611 I [ 3112.451192]: [INFO]: OPLUS_CHG[sc6607]:sc6607_reset_watchdog_timer: enter 01-01 13:59:12.279157 830 830 I [ 3112.475020]: [INFO]: OPLUS_CHG[sc6607]:sc6607_set_input_volt_limit: volt = 4700, val=0x7 01-01 13:59:12.286759 12809 12809 I [ 3112.482622]OPLUS_CHG[oplus_charge_info]: BATTERY[585 585 4415 4415 0 100 100 100 7368 7000 1 0x0], CHARGE[4470 0 1 0], WIRED[1 87 5096 500 3 0x0 0 0 0 2 0], WIRELESS[0 0 0 0 0 0x0 0 0 0], VOOC[0 0 0 0 0x0], UFCS[0 0 0 0x0], COMMON[8 0 5 0x100088 0 0 1 7000 100 0] 01-01 13:59:12.292084 1434 1434 W [ 3112.487947]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:13.013451 1871 1871 I [ 3113.209314]: read descriptors 01-01 13:59:13.014448 1871 1871 I [ 3113.210311]: read strings 01-01 13:59:13.023199 1 1 I [ 3113.219062]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:13.035059 1 1 W [ 3113.230922]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:14.070376 1871 1871 I [ 3114.266239]: read descriptors 01-01 13:59:14.070535 1871 1871 I [ 3114.266398]: read strings 01-01 13:59:14.096620 1 1 W [ 3114.292483]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:15.119153 1871 1871 I [ 3115.315016]: read descriptors 01-01 13:59:15.119311 1871 1871 I [ 3115.315174]: read strings 01-01 13:59:15.127714 1 1 I [ 3115.323577]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:15.134920 1 1 I [ 3115.330783]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:15.137969 1 1 W [ 3115.333832]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:15.138384 1 1 I [ 3115.334247]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:15.577289 1434 1434 W [ 3115.773152]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:15.984789 817 817 E [ 3116.180652][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:16.173296 1871 1871 I [ 3116.369159]: read descriptors 01-01 13:59:16.173411 1871 1871 I [ 3116.369274]: read strings 01-01 13:59:16.183227 1 1 I [ 3116.379090]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:16.190469 1 1 I [ 3116.386332]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 3ms and failed: symlink() failed: File exists 01-01 13:59:16.193461 1 1 W [ 3116.389324]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:16.194308 1 1 I [ 3116.390171]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:16.250226 13529 13529 E [ 3116.446089][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:16.276676 13529 13529 E [ 3116.472539][ERROR]: OPLUS_CHG[CW2217]([cw_update_data][525]): vol = 4415 current = 0 cap = 100 temp = 585 01-01 13:59:16.747593 169 169 I [ 3116.943456]: [wdog_util]cpu avail mask: 0xff; ping mask: 0xe; irqs since last: 11439 01-01 13:59:16.747798 169 169 W [ 3116.943661][OPLUS_WD] oplus_show_utc_time: !@WatchDog: 2025-01-01 05:59:16.570463516 UTC 01-01 13:59:16.748428 13529 13529 I [ 3116.944291](virq: irq_count)- GICv3:arch_timer(11):1976165 GICv3:IPI(1):1741681 GICv3:IPI(2):897712 GICv3:IPI(6):334096 GICv3:glink-native-rpm-glink(33):161884 pmic_arb:pm-adc5(172):109062 GICv3:i2c_geni(180):107497 GICv3:i2c_geni(179):84498 GICv3:arch_mem_timer(13):81509 GICv3:mmc0(36):80900 01-01 13:59:16.748752 13529 13529 I [ 3116.944615](cpu: irq_count)- 0:1274609 1:1018977 2:1012910 3:1216613 4:298643 5:282439 6:268626 7:277111 01-01 13:59:16.748978 13529 13529 I [ 3116.944841](ipi: irq_count)- 0:1741681 1:897712 2:0 3:0 4:1962 5:334096 6:0 01-01 13:59:17.228087 1871 1871 I [ 3117.423950]: read descriptors 01-01 13:59:17.228190 1871 1871 I [ 3117.424053]: read strings

filetype

eventlog01-01 13:59:00.803 01958 01958 I auditd : type=1400 audit(0.0:8754): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:01.803 01958 01958 I auditd : type=1400 audit(0.0:8755): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:02.803 01958 01958 I auditd : type=1400 audit(0.0:8756): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:03.803 01958 01958 I auditd : type=1400 audit(0.0:8757): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:04.803 01958 01958 I auditd : type=1400 audit(0.0:8758): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:05.803 01958 01958 I auditd : type=1400 audit(0.0:8759): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:06.803 01958 01958 I auditd : type=1400 audit(0.0:8760): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:07.803 01958 01958 I auditd : type=1400 audit(0.0:8761): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:08.803 01958 01958 I auditd : type=1400 audit(0.0:8762): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:09.803 01958 01958 I auditd : type=1400 audit(0.0:8763): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:10.807 01958 01958 I auditd : type=1400 audit(0.0:8764): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:11.803 01958 01958 I auditd : type=1400 audit(0.0:8765): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:12.803 01958 01958 I auditd : type=1400 audit(0.0:8766): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:13.803 01958 01958 I auditd : type=1400 audit(0.0:8767): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:14.803 01958 01958 I auditd : type=1400 audit(0.0:8768): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:15.803 01958 01958 I auditd : type=1400 audit(0.0:8769): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:16.803 01958 01958 I auditd : type=1400 audit(0.0:8770): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:16.932 02220 02220 I notification_enqueue: [1000,6513,com.oplus.olc,1,NULL,0,Notification(channel=LOGKIT_CHANNEL shortcut=null contentView=null vibrate=null sound=null defaults=0 flags=ONGOING_EVENT|NO_CLEAR|FOREGROUND_SERVICE|CAN_COLORIZE color=0x00000000 groupKey=com.oplus.olc.notification vis=PRIVATE),1] 01-01 13:59:16.954 02220 02220 I notification_enqueue: [1000,6513,com.oplus.olc,1,NULL,0,Notification(channel=LOGKIT_CHANNEL shortcut=null contentView=null vibrate=null sound=null defaults=0 flags=ONGOING_EVENT|NO_CLEAR|FOREGROUND_SERVICE|CAN_COLORIZE color=0x00000000 groupKey=com.oplus.olc.notification vis=PRIVATE),1] 01-01 13:59:17.803 01958 01958 I auditd : type=1400 audit(0.0:8771): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:18.803 01958 01958 I auditd : type=1400 audit(0.0:8772): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:20.103 01958 01958 I auditd : type=1400 audit(0.0:8773): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 01-01 13:59:20.803 01958 01958 I auditd : type=1400 audit(0.0:8774): avc: denied { read } for comm="traced_probes" name="devfreq" dev="sysfs" ino=31317 scontext=u:r:traced_probes:s0 tcontext=u:object_r:vendor_sysfs_devfreq:s0 tclass=dir permissive=0 kernellog01-01 13:59:11.966123 1 1 I [ 3112.161986]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:11.973102 1 1 I [ 3112.168965]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 1ms and failed: symlink() failed: File exists 01-01 13:59:11.976702 1 1 W [ 3112.172565]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:11.977120 1 1 I [ 3112.172983]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:12.143321 13242 13242 E [ 3112.339184][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.181296 13242 13242 E [ 3112.377159][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.200908 13242 13242 E [ 3112.396771][ERROR]: OPLUS_CHG[MMS_GAUGE]([oplus_mms_gauge_update_cc][3883]): get battery cc error, rc=0 01-01 13:59:12.219789 13242 13242 E [ 3112.415652][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.235356 12809 12809 I [ 3112.431219]: [INFO]: OPLUS_CHG[CHG_COMM]([oplus_comm_smooth_to_soc][3142]): soc[0 3 100 100 100 100] avg[1 1 0 0 0] fifo[100 100 100 100] 01-01 13:59:12.235477 12809 12809 E [ 3112.431340][ERROR]: OPLUS_CHG[CHG_COMM]([oplus_comm_battery_notify_tbat_check][4799]): bat_temp(585) > 53'C 01-01 13:59:12.248278 516 516 I [ 3112.444141]: ///PD dbg info 122d 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.443>TCPC-TCPC: bat_update_work_func battery update soc = 100 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.444>TCPC-TCPC: bat_update_work_func Battery Idle 01-01 13:59:12.255329 11611 11611 I [ 3112.451192]: [INFO]: OPLUS_CHG[sc6607]:sc6607_reset_watchdog_timer: enter 01-01 13:59:12.279157 830 830 I [ 3112.475020]: [INFO]: OPLUS_CHG[sc6607]:sc6607_set_input_volt_limit: volt = 4700, val=0x7 01-01 13:59:12.286759 12809 12809 I [ 3112.482622]OPLUS_CHG[oplus_charge_info]: BATTERY[585 585 4415 4415 0 100 100 100 7368 7000 1 0x0], CHARGE[4470 0 1 0], WIRED[1 87 5096 500 3 0x0 0 0 0 2 0], WIRELESS[0 0 0 0 0 0x0 0 0 0], VOOC[0 0 0 0 0x0], UFCS[0 0 0 0x0], COMMON[8 0 5 0x100088 0 0 1 7000 100 0] 01-01 13:59:12.292084 1434 1434 W [ 3112.487947]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:13.013451 1871 1871 I [ 3113.209314]: read descriptors 01-01 13:59:13.014448 1871 1871 I [ 3113.210311]: read strings 01-01 13:59:13.023199 1 1 I [ 3113.219062]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:13.035059 1 1 W [ 3113.230922]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:14.070376 1871 1871 I [ 3114.266239]: read descriptors 01-01 13:59:14.070535 1871 1871 I [ 3114.266398]: read strings 01-01 13:59:14.096620 1 1 W [ 3114.292483]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:15.119153 1871 1871 I [ 3115.315016]: read descriptors 01-01 13:59:15.119311 1871 1871 I [ 3115.315174]: read strings 01-01 13:59:15.127714 1 1 I [ 3115.323577]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:15.134920 1 1 I [ 3115.330783]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:15.137969 1 1 W [ 3115.333832]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:15.138384 1 1 I [ 3115.334247]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:15.577289 1434 1434 W [ 3115.773152]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:15.984789 817 817 E [ 3116.180652][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:16.173296 1871 1871 I [ 3116.369159]: read descriptors 01-01 13:59:16.173411 1871 1871 I [ 3116.369274]: read strings 01-01 13:59:16.183227 1 1 I [ 3116.379090]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:16.190469 1 1 I [ 3116.386332]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 3ms and failed: symlink() failed: File exists 01-01 13:59:16.193461 1 1 W [ 3116.389324]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:16.194308 1 1 I [ 3116.390171]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:16.250226 13529 13529 E [ 3116.446089][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:16.276676 13529 13529 E [ 3116.472539][ERROR]: OPLUS_CHG[CW2217]([cw_update_data][525]): vol = 4415 current = 0 cap = 100 temp = 585 01-01 13:59:16.747593 169 169 I [ 3116.943456]: [wdog_util]cpu avail mask: 0xff; ping mask: 0xe; irqs since last: 11439 01-01 13:59:16.747798 169 169 W [ 3116.943661][OPLUS_WD] oplus_show_utc_time: !@WatchDog: 2025-01-01 05:59:16.570463516 UTC 01-01 13:59:16.748428 13529 13529 I [ 3116.944291](virq: irq_count)- GICv3:arch_timer(11):1976165 GICv3:IPI(1):1741681 GICv3:IPI(2):897712 GICv3:IPI(6):334096 GICv3:glink-native-rpm-glink(33):161884 pmic_arb:pm-adc5(172):109062 GICv3:i2c_geni(180):107497 GICv3:i2c_geni(179):84498 GICv3:arch_mem_timer(13):81509 GICv3:mmc0(36):80900 01-01 13:59:16.748752 13529 13529 I [ 3116.944615](cpu: irq_count)- 0:1274609 1:1018977 2:1012910 3:1216613 4:298643 5:282439 6:268626 7:277111 01-01 13:59:16.748978 13529 13529 I [ 3116.944841](ipi: irq_count)- 0:1741681 1:897712 2:0 3:0 4:1962 5:334096 6:0 01-01 13:59:17.228087 1871 1871 I [ 3117.423950]: read descriptors 01-01 13:59:17.228190 1871 1871 I [ 3117.424053]: read strings 01-01 13:59:17.234416 1 1 I [ 3117.430279]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:17.241155 1 1 I [ 3117.437018]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:17.244680 1 1 W [ 3117.440543]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:17.245135 1 1 I [ 3117.440998]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:17.262093 13602 13602 E [ 3117.457956][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:17.294369 13602 13602 E [ 3117.490232][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:17.311863 13602 13602 E [ 3117.507726][ERROR]: OPLUS_CHG[MMS_GAUGE]([oplus_mms_gauge_update_cc][3883]): get battery cc error, rc=0 01-01 13:59:17.329197 13602 13602 E [ 3117.525060][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:17.344851 4548 4548 I [ 3117.540714]: [INFO]: OPLUS_CHG[CHG_COMM]([oplus_comm_smooth_to_soc][3142]): soc[0 3 100 100 100 100] avg[2 1 0 0 0] fifo[100 100 100 100] 01-01 13:59:17.344951 4548 4548 E [ 3117.540814][ERROR]: OPLUS_CHG[CHG_COMM]([oplus_comm_battery_notify_tbat_check][4799]): bat_temp(585) > 53'C 01-01 13:59:17.358486 516 516 I [ 3117.554349]: ///PD dbg info 122d 01-01 13:59:17.358517 516 516 I [ 3117.554380]< 3117.554>TCPC-TCPC: bat_update_work_func battery update soc = 100 01-01 13:59:17.358517 516 516 I [ 3117.554380]< 3117.554>TCPC-TCPC: bat_update_work_func Battery Idle 01-01 13:59:17.362973 13807 13807 I [ 3117.558836]: [INFO]: OPLUS_CHG[sc6607]:sc6607_reset_watchdog_timer: enter 01-01 13:59:17.386677 11326 11326 I [ 3117.582540]: [INFO]: OPLUS_CHG[sc6607]:sc6607_set_input_volt_limit: volt = 4700, val=0x7 01-01 13:59:17.395929 4548 4548 I [ 3117.591792]OPLUS_CHG[oplus_charge_info]: BATTERY[585 585 4415 4415 0 100 100 100 7368 7000 1 0x0], CHARGE[4470 0 1 0], WIRED[1 297 5077 500 3 0x0 0 0 0 2 0], WIRELESS[0 0 0 0 0 0x0 0 0 0], VOOC[0 0 0 0 0x0], UFCS[0 0 0 0x0], COMMON[8 0 5 0x100088 0 0 1 7000 100 0] 01-01 13:59:17.396396 1434 1434 W [ 3117.592259]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u 01-01 13:59:18.282881 1871 1871 I [ 3118.478744]: read descriptors 01-01 13:59:18.283053 1871 1871 I [ 3118.478916]: read strings 01-01 13:59:18.291188 1 1 I [ 3118.487051]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:18.302292 1 1 W [ 3118.498155]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:19.330867 1871 1871 I [ 3119.526730]: read descriptors 01-01 13:59:19.331039 1871 1871 I [ 3119.526902]: read strings 01-01 13:59:19.348169 1 1 W [ 3119.544032]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:20.385220 1871 1871 I [ 3120.581083]: read descriptors 01-01 13:59:20.385376 1871 1871 I [ 3120.581239]: read strings 01-01 13:59:20.396328 1 1 I [ 3120.592191]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:20.407387 1 1 I [ 3120.603250]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 3ms and failed: symlink() failed: File exists 01-01 13:59:20.414531 1 1 W [ 3120.610394]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:20.415529 1 1 I [ 3120.611392]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 6ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:20.847771 817 817 E [ 3121.043634][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:21.365450 13529 13529 E [ 3121.561313][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:21.391418 13529 13529 E [ 3121.587281][ERROR]: OPLUS_CHG[CW2217]([cw_update_data][525]): vol = 4416 current = 0 cap = 100 temp = 585 01-01 13:59:21.438766 1871 1871 I [ 3121.634629]: read descriptors 01-01 13:59:21.438919 1871 1871 I [ 3121.634782]: read strings

filetype

01-01 13:59:09.833425 1871 1871 I [ 3110.029288]: read descriptors 01-01 13:59:09.834559 1871 1871 I [ 3110.030422]: read strings 01-01 13:59:09.843181 1 1 I [ 3110.039044]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:09.846371 1 1 I [ 3110.042234]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 1ms and failed: symlink() failed: File exists 01-01 13:59:09.847584 1 1 W [ 3110.043447]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:09.847773 1 1 I [ 3110.043636]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 0ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:10.865193 817 817 E [ 3111.061056][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:10.902853 1871 1871 I [ 3111.098716]: read descriptors 01-01 13:59:10.903019 1871 1871 I [ 3111.098882]: read strings 01-01 13:59:10.911364 1 1 I [ 3111.107227]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:10.919875 1 1 I [ 3111.115738]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 2ms and failed: symlink() failed: File exists 01-01 13:59:10.923961 1 1 W [ 3111.119824]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:10.924498 1 1 I [ 3111.120361]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 3ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:11.125117 8 8 E [ 3111.320980][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:11.151486 8 8 E [ 3111.347349][ERROR]: OPLUS_CHG[CW2217]([cw_update_data][525]): vol = 4415 current = 0 cap = 100 temp = 585 01-01 13:59:11.959919 1871 1871 I [ 3112.155782]: read descriptors 01-01 13:59:11.960022 1871 1871 I [ 3112.155885]: read strings 01-01 13:59:11.966123 1 1 I [ 3112.161986]init: processing action (sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1) from (/system/etc/init/hw/init.usb.configfs.rc:24) 01-01 13:59:11.973102 1 1 I [ 3112.168965]init: Command 'symlink /config/usb_gadget/g1/functions/ffs.adb /config/usb_gadget/g1/configs/b.1/f1' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:26) took 1ms and failed: symlink() failed: File exists 01-01 13:59:11.976702 1 1 W [ 3112.172565]UDC core: couldn't find an available UDC or it's busy: -19 01-01 13:59:11.977120 1 1 I [ 3112.172983]init: Command 'write /config/usb_gadget/g1/UDC ${sys.usb.controller}' action=sys.usb.config=adb && sys.usb.configfs=1 && sys.usb.ffs.ready=1 (/system/etc/init/hw/init.usb.configfs.rc:27) took 2ms and failed: Unable to write to file '/config/usb_gadget/g1/UDC': Unable to write file contents: No such device 01-01 13:59:12.143321 13242 13242 E [ 3112.339184][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.181296 13242 13242 E [ 3112.377159][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.200908 13242 13242 E [ 3112.396771][ERROR]: OPLUS_CHG[MMS_GAUGE]([oplus_mms_gauge_update_cc][3883]): get battery cc error, rc=0 01-01 13:59:12.219789 13242 13242 E [ 3112.415652][ERROR]: OPLUS_CHG[CW2217]([cw_get_capacity][352]): CW2015[352]: UI_SOC = 103 larger 100!!!! 01-01 13:59:12.235356 12809 12809 I [ 3112.431219]: [INFO]: OPLUS_CHG[CHG_COMM]([oplus_comm_smooth_to_soc][3142]): soc[0 3 100 100 100 100] avg[1 1 0 0 0] fifo[100 100 100 100] 01-01 13:59:12.235477 12809 12809 E [ 3112.431340][ERROR]: OPLUS_CHG[CHG_COMM]([oplus_comm_battery_notify_tbat_check][4799]): bat_temp(585) > 53'C 01-01 13:59:12.248278 516 516 I [ 3112.444141]: ///PD dbg info 122d 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.443>TCPC-TCPC: bat_update_work_func battery update soc = 100 01-01 13:59:12.248311 516 516 I [ 3112.444174]< 3112.444>TCPC-TCPC: bat_update_work_func Battery Idle 01-01 13:59:12.255329 11611 11611 I [ 3112.451192]: [INFO]: OPLUS_CHG[sc6607]:sc6607_reset_watchdog_timer: enter 01-01 13:59:12.279157 830 830 I [ 3112.475020]: [INFO]: OPLUS_CHG[sc6607]:sc6607_set_input_volt_limit: volt = 4700, val=0x7 01-01 13:59:12.286759 12809 12809 I [ 3112.482622]OPLUS_CHG[oplus_charge_info]: BATTERY[585 585 4415 4415 0 100 100 100 7368 7000 1 0x0], CHARGE[4470 0 1 0], WIRED[1 87 5096 500 3 0x0 0 0 0 2 0], WIRELESS[0 0 0 0 0 0x0 0 0 0], VOOC[0 0 0 0 0x0], UFCS[0 0 0 0x0], COMMON[8 0 5 0x100088 0 0 1 7000 100 0] 01-01 13:59:12.292084 1434 1434 W [ 3112.487947]healthd: battery l=100 v=4415 t=58.5 h=3 st=5 c=0 fc=7000000 cc=0 chg=u adb为什么断连

filetype
filetype

zyh@LAPTOP-FRKC8P1E:~/catkin_ws$ catkin build usb_cam -------------------------------------------------------- Profile: default Extending: [cached] /opt/ros/noetic Workspace: /home/zyh/catkin_ws -------------------------------------------------------- Build Space: [exists] /home/zyh/catkin_ws/build Devel Space: [exists] /home/zyh/catkin_ws/devel Install Space: [unused] /home/zyh/catkin_ws/install Log Space: [exists] /home/zyh/catkin_ws/logs Source Space: [exists] /home/zyh/catkin_ws/src DESTDIR: [unused] None -------------------------------------------------------- Devel Space Layout: linked Install Space Layout: None -------------------------------------------------------- Additional CMake Args: None Additional Make Args: None Additional catkin Make Args: None Internal Make Job Server: True Cache Job Environments: False -------------------------------------------------------- Buildlisted Packages: None Skiplisted Packages: None -------------------------------------------------------- Workspace configuration appears valid. -------------------------------------------------------- [build] Found 15 packages in 0.0 seconds. [build] Package table is up to date. [build] Warning: Skipping package `usb_cam` because it has an unsupported package build type: `ament_cmake` [build] Note: Available build types: [build] - `catkin` [build] - `cmake` [build] Summary: All 0 packages succeeded! [build] Ignored: 15 packages were skipped or are skiplisted. [build] Warnings: None. [build] Abandoned: None. [build] Failed: None. [build] Runtime: 0.1 seconds total.

无分别
  • 粉丝: 35
上传资源 快速赚钱