[problem help] deepinV23 release sougou-next wu fa qie huan zhong wen Resolved
Tofloor
poster avatar
iyue
deepin
2024-08-21 10:27
Author

deepinV23 release sougou-next 中文无法切换

kai ji jiu shi zhe yang le !!!!!
screenshot-20240821-102642.png

Reply Favorite View the author
All Replies
jjcui8595
deepin
2024-08-21 10:32
#1

参考超级版主的帖子

https://bbs.deepin.org/zh/post/274902

Reply View the author
iyue
deepin
2024-08-22 18:29
#2
jjcui8595

参考超级版主的帖子

https://bbs.deepin.org/zh/post/274902

刚安装都可以使用,但是随机出现无法切换中文,自带的输入法 偶尔 会直接把字母上屏到输入框 。

有什么办法可以自己排查问题

Reply View the author
jjcui8595
deepin
2024-08-23 08:08
#3
iyue

刚安装都可以使用,但是随机出现无法切换中文,自带的输入法 偶尔 会直接把字母上屏到输入框 。

有什么办法可以自己排查问题

这个输入法还在持续更新,也说明没有达到稳定状态,因此建议跟进更新,而不必尝试自己解决问题

Reply View the author
iyue
deepin
2024-08-26 14:08
#4

把这个脚本执行一下 或者手动结束一下服务 希望尽快解决,别的输入法更没眼看了都还不支持。

#!/bin/bash
# 这个脚本兼容Zsh和Bash,用于查找并杀死名为cpis-panel-service的进程

# 定义进程名称
process_name="cpis-panel-service"

# 使用ps命令查找进程,并通过grep筛选出含有进程名称的行
# 使用grep的--color=never选项避免颜色输出,确保脚本的兼容性
# 通过grep -v grep命令排除grep自身
# awk用于提取第二列(进程ID)
# xargs用于传递参数给kill命令
ps -ef | grep --color=never "$process_name" | grep -v grep | awk '{print $2}' | xargs kill

# 检查是否有进程被杀死
if [ $? -eq 0 ]; then
  echo "Process(es) named '$process_name' have been terminated."
else
  echo "No processes named '$process_name' were found or could not be terminated."
fi
Reply View the author