2327d9d6c0
added devfs_rule configs for jails configure mail ipv6 settings windows2019 VM
47 lines
1.1 KiB
Bash
Executable File
47 lines
1.1 KiB
Bash
Executable File
# Copyright (c) 2018-2020, diyIT.org
|
|
# All rights reserved.
|
|
#
|
|
# BSD 2-Clause License ("Simplified BSD License" or "FreeBSD License")
|
|
# https://diyit.org/license/
|
|
#
|
|
#
|
|
|
|
#!/bin/sh
|
|
#
|
|
session="vm_tmux"
|
|
|
|
# set up tmux
|
|
tmux start-server
|
|
|
|
# create a new tmux session, naming the window freepbx
|
|
tmux new-session -d -s $session -n freepbx
|
|
tmux selectp -t 1
|
|
tmux send-keys "cd /mnt/config;./pbx.sh" C-m
|
|
|
|
# create a new window r-windows
|
|
tmux new-window -t $session:1 -n r-windows
|
|
tmux selectp -t 1
|
|
tmux send-keys "cd /mnt/config;./r-windows.sh" C-m
|
|
|
|
# create a new window ubuntu
|
|
tmux new-window -t $session:2 -n ubuntu
|
|
tmux selectp -t 1
|
|
tmux send-keys "cd /mnt/config;./ubuntu.sh" C-m
|
|
|
|
# create a new window freebsd
|
|
tmux new-window -t $session:3 -n freebsd
|
|
tmux selectp -t 1
|
|
tmux send-keys "cd /mnt/config;./freebsd.sh" C-m
|
|
|
|
# create a new window w2019
|
|
tmux new-window -t $session:4 -n w2019
|
|
tmux selectp -t 1
|
|
tmux send-keys "cd /mnt/config;./w2019.sh" C-m
|
|
|
|
# return to main window
|
|
tmux select-window -t $session:0
|
|
tmux selectp -t 1
|
|
|
|
# Finished setup, attach to the tmux session!
|
|
#tmux attach-session -t $session
|