gpt4 book ai didi

c - 当应用程序连接服务器与终端时如何将应用程序绑定(bind)到用户

转载 作者:太空宇宙 更新时间:2023-11-04 11:41:31 25 4
gpt4 key购买 nike

我的应用程序现在已经封为产品,将与安装了linux系统的PC一起销售。我将如何为客户创建一个新用户,但我想将一个类似界面的应用程序绑定(bind)到用户,所以当我的客户通过终端登录时,所选应用程序会自动运行,当连接结束时,应用程序以相同的方式退出。我知道,也许这可以通过编程方式实现……但是……你知道什么建议吗???谢谢所有赞赏...

最佳答案

AProgrammer 所述,您可以将您的应用程序作为用户 shell 或在配置文件中运行,如本例所示

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi

# run you app here
exec myapp

关于c - 当应用程序连接服务器与终端时如何将应用程序绑定(bind)到用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2316595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com