openoffice启动和自动启动设置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
openoffice 在 Windows 和 linux 环境下启动和自动启动
windows环境下安装启动openoffice
安装、启动
下载openoffice的 Windows 版本并安装,默认路径为「C:\Program Files (x86)\OpenOffice 4」。
启动命令:
cd C:\Program Files\OpenOffice.org 3\program
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
也可以写个脚本点击执行
新建一个文件,并命名为”openoffice.bat”,内容为:
@echo off
cd C:\Program Files\OpenOffice.org 3\program
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard
自动启动
下载并安装Server 2003 Resource Kit Tools 。(默认装在C:\Program Files (x86)\Windows Resource Kits)
在 cmd 中运行一下命令,创建一个名为OpenOfficeUnoServer的服务:
"C:\Program Files (x86)\Windows Resource Kits\Tools\instsrv" OpenOfficeUnoServer "C:\Program Files (x86)\Windows Resource Kits\Tools\srvany.exe"
「regedit」打开注册表,寻找以下路径「HKEY_LOCAL_MACHINE -> SYSTEM ->ControlSet001 ->Services ->OpenOfficeUnoServer」
新建项 Parameters,在该项下添加两个字符串值:
key:Application
value:C:\Program Files (x86)\OpenOffice 4\program\soffice.exe
key:AppParameters
value:-invisible -headless -accept=socket,host=127.0.0.1,port=8100;urp; -nofirststartwizard
在服务中设置自动启动
OK!!
Linux环境下安装启动openoffice
下载对应版本。
解压并安装
tar -zxvf Apache_OpenOffice_4.1.1_Linux_x86-64_install-rpm_zh-CN.tar.gz
rpm -Uvh *.rpm desktop-integration/openoffice4.1.1-redhat-menus-4.1.1-9775.noarch.rpm
运行
cd /opt/openoffice4/program (安装路径)
nohup soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
自动启动设置
vi /etc/rc.local
soffice -headless -accept="socket,host=127.0.0.1,port=8100;urp;" -nofirststartwizard &
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)