feat: add rstudio deployment

This commit is contained in:
theo 2026-02-16 09:40:38 +00:00
parent 7486662cc8
commit 8d2f7ec654
225 changed files with 1582 additions and 5 deletions

View file

@ -11,8 +11,8 @@ services:
environment:
LISTEN: /beszel_socket/beszel.sock
HUB_URL: http://192.168.12.151:8091
TOKEN: EvrIZdupNHXJyEFdMpAa
KEY: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHK3ckn/gTe88kj1KLkRyYr4rX765k0d8nFDrVvJnXUF"
TOKEN: token-from-beszel
KEY: "shh-key"
volumes:
beszel_agent_data:

View file

@ -6,9 +6,9 @@ services:
environment:
INFLUXDB_DB: 'monitoringdb' # Name der InfluxDB-Datenbank
INFLUXDB_ADMIN_USER: 'admin' # Admin Benutzername
INFLUXDB_ADMIN_PASSWORD: '58201928alsk' # Admin Passwort
INFLUXDB_ADMIN_PASSWORD: 'influx-db-admin-password' # Admin Passwort
INFLUXDB_USER: 'theo' # Grafana Benutzername
INFLUXDB_USER_PASSWORD: 'Ftul7103oy!' # Grafana Passwort
INFLUXDB_USER_PASSWORD: 'influx-db-password' # Grafana Passwort
volumes:
- influxdb_data:/var/lib/influxdb # Persistente Daten für InfluxDB
ports:
@ -21,7 +21,7 @@ services:
container_name: grafana
restart: always
environment:
GF_SECURITY_ADMIN_PASSWORD: '58201928alsk' # Grafana Admin Passwort
GF_SECURITY_ADMIN_PASSWORD: 'secure-password' # Grafana Admin Passwort
volumes:
- grafana_data:/var/lib/grafana # Persistente Daten für Grafana
ports:

7
rstudio/.bash_logout Normal file
View file

@ -0,0 +1,7 @@
# ~/.bash_logout: executed by bash(1) when login shell exits.
# when leaving the console clear the screen to increase privacy
if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi

117
rstudio/.bashrc Normal file
View file

@ -0,0 +1,117 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
# append to the history file, don't overwrite it
shopt -s histappend
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
HISTSIZE=1000
HISTFILESIZE=2000
# check the window size after each command and, if necessary,
# update the values of LINES and COLUMNS.
shopt -s checkwinsize
# If set, the pattern "**" used in a pathname expansion context will
# match all files and zero or more directories and subdirectories.
#shopt -s globstar
# make less more friendly for non-text input files, see lesspipe(1)
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
# set variable identifying the chroot you work in (used in the prompt below)
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# set a fancy prompt (non-color, unless we know we "want" color)
case "$TERM" in
xterm-color|*-256color) color_prompt=yes;;
esac
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
#force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
;;
*)
;;
esac
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias ls='ls --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
fi
# colored GCC warnings and errors
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Add an "alert" alias for long running commands. Use like so:
# sleep 10; alert
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
if ! shopt -oq posix; then
if [ -f /usr/share/bash-completion/bash_completion ]; then
. /usr/share/bash-completion/bash_completion
elif [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
fi

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,7 @@
{
"save_workspace": "never",
"always_save_history": false,
"reuse_sessions_for_project_links": true,
"posix_terminal_shell": "bash",
"jobs_tab_visibility": "shown"
}

View file

@ -0,0 +1 @@
{}

View file

@ -0,0 +1,3 @@
{
"objectDisplayType": 0
}

View file

@ -0,0 +1,11 @@
{
"quarto-new-proj": {
"type": "default",
"engine": "knitr",
"kernel": "python3",
"venv": "",
"condaenv": "",
"packages": "matplotlib pandas",
"editor": "visual"
}
}

View file

@ -0,0 +1,8 @@
{
"column-info": {
"names": [
"Source"
],
"activeColumn": "Source"
}
}

View file

@ -0,0 +1,6 @@
{
"themeInfo": {
"foreground": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)"
}
}

View file

@ -0,0 +1,9 @@
{
"rightpanesize": {
"panelwidth": 1406,
"windowwidth": 1422,
"splitterpos": [
795
]
}
}

View file

@ -0,0 +1,112 @@
1741681555136:q()
1741682052034:source("~/Clustering.R")
1741682401563:source("~/Clustering.R")
1741682442483:source("~/Clustering.R")
1741682449453:source("~/Clustering.R")
1741683132516:source("~/Klausur/Klausur.R")
1741683863573:source("~/Klausur/Klausur.R")
1741684075648:source("~/Klausur/Klausur.R")
1741684165885:source("~/Klausur/Klausur.R")
1741684272787:source("~/Klausur/Klausur.R")
1741684333747:source("~/Klausur/Klausur.R")
1741684455760:source("~/Klausur/Klausur.R")
1741684459332:source("~/Klausur/Klausur.R")
1741684492433:source("~/Klausur/Klausur.R")
1741684524606:source("~/Klausur/Klausur.R")
1741684652973:source("~/Klausur/Klausur.R")
1741684667800:source("~/Klausur/Klausur.R")
1741684677787:source("~/Klausur/Klausur.R")
1741684680712:source("~/Klausur/Klausur.R")
1741684801339:source("~/Klausur/Klausur.R")
1741684841614:source("~/Klausur/Klausur.R")
1741684846975:source("~/Klausur/Klausur.R")
1741684889178:source("~/Klausur/Klausur.R")
1741684923986:source("~/Klausur/Klausur.R")
1741685007836:source("~/Klausur/Klausur.R")
1741685011892:source("~/Klausur/Klausur.R")
1741685048525:source("~/Klausur/Klausur.R")
1741685072706:source("~/Klausur/Klausur.R")
1741685086236:source("~/Klausur/Klausur.R")
1741685127881:source("~/Klausur/Klausur.R")
1741685133732:source("~/Klausur/Klausur.R")
1741685349199:source("~/Übungen/Clustering.R")
1741685840706:source("~/Klausur/Klausur.R")
1741685930782:source("~/Klausur/Klausur.R")
1741686034785:source("~/Klausur/EU2024.R")
1741686131575:source("~/Klausur/EU2024.R")
1741686190591:source("~/Klausur/EU2024.R")
1741686294626:source("~/Klausur/EU2024.R")
1741686561988:source("~/Klausur/EU2024.R")
1741686647546:source("~/Klausur/EU2024.R")
1741686685898:data <- read_excel("EU2024.xlsx")
1741686699179:source("~/Klausur/EU2024.R")
1741686759380:source("~/Klausur/EU2024.R")
1741686765164:file.exists("/home/rstudio/Klausur/EU2024.xlsx")
1741686791660:source("~/Klausur/EU2024.R")
1741687089304:source("~/Klausur/EU2024.R")
1741687093291:data <- read_excel("/home/rstudio/Klausur/EU2024.xlsx")
1741687094360:# Korrelogramm
1741687094360:cor_matrix <- cor(data[ ,sapply(data, is.numeric)], use = "pairwise.complete.obs")
1741687094555:corrplot(cor_matrix, method = "color", addCoef.col = "black", tl.cex = 0.7)
1741687094708:# Korrelierte Variablen
1741687094709:high_cor_vars <- which(abs(cor_matrix) > 0.8 & abs(cor_matrix) < 1, arr.ind = TRUE)
1741687300325:# PCA
1741687300325:pca_model <- prcomp(data[ ,sapply(data, is.numeric)], scale = TRUE)
1741687315070:clear()
1741687323650:fviz_pca_biplot(pca_model, label = "var", habillage = data$Country)
1741687393338:source("~/Klausur/EU2024.R")
1741687452717:source("~/Klausur/EU2024.R")
1741687508629:source("~/Klausur/EU2024.R")
1741687522196:source("~/Klausur/EU2024.R")
1741687579328:source("~/Klausur/EU2024.R")
1741687603399:source("~/Klausur/EU2024.R")
1741687619272:data <- read_excel("EU2024.xlsx")
1741687619282:colnames(data)
1741687688473:source("~/Klausur/EU2024.R")
1741687737939:install.packages("factoextra")
1741687772424:source("~/Klausur/EU2024.R")
1741687807746:source("~/Klausur/EU2024.R")
1741687871175:source("~/Klausur/EU2024.R")
1741687876888:source("~/Klausur/EU2024.R")
1741687943265:source("~/Klausur/EU2024.R")
1741687992077:source("~/Klausur/EU2024.R")
1741688018954:source("~/Klausur/EU2024.R")
1741688117327:source("~/Klausur/EU2024.R")
1741688206385:source("~/Klausur/EU2024.R")
1741688368632:source("~/Klausur/EU2024.R")
1741688382107:source("~/Klausur/EU2024.R")
1741688399322:source("~/Klausur/EU2024.R")
1741688508346:for (i in 1:nrow(high_cor_vars)) {
1741688508347:pair <- rownames(cor_matrix)[high_cor_vars[i, ]]
1741688508347:print(pair)
1741688508347:scatter_plot <- ggplot(data, aes_string(x = pair[1], y = pair[2], label = "Land")) +
1741688508347:geom_point() +
1741688508347:geom_text(vjust = -1) +
1741688508347:theme_minimal()
1741688508348:print(scatter_plot)
1741688508348:}
1741688519360:source("~/Klausur/EU2024.R")
1741689624312:source("~/Klausur/EU2024.R")
1741689645001:source("~/Klausur/EU2024.R")
1742034769136:mean(xx$b)
1742035185458:abline(li)
1742035199531:source("~/Klausur/Probeklausur.R")
1742035482767:source("~/Klausur/Probeklausur.R")
1742035511694:source("~/Klausur/Probeklausur.R")
1742404958592:source("~/Klausur/Probeklausur.R")
1742405036806:source("~/Klausur/Probeklausur.R")
1742405055059:source("~/Klausur/Probeklausur.R")
1742405090872:source("~/Klausur/Probeklausur.R")
1742405130528:source("~/Klausur/Probeklausur.R")
1742405162464:source("~/Klausur/Probeklausur.R")
1742480178393:source("~/Klausur/Probeklausur.R")
1742480183671:source("~/Klausur/Probeklausur.R")
1742480204885:source("~/Klausur/Probeklausur.R")
1742480230970:source("~/Klausur/Probeklausur.R")
1742480252953:source("~/Klausur/Probeklausur.R")
1742480270549:source("~/Klausur/Probeklausur.R")
1742480314915:source("~/Klausur/Probeklausur.R")
1742480429257:source("~/Klausur/Probeklausur.R")
1742480444489:source("~/Klausur/Probeklausur.R")
1742480457328:source("~/Klausur/Probeklausur.R")
1742480477365:source("~/Klausur/Probeklausur.R")

View file

@ -0,0 +1,6 @@
~/Klausur/Probeklausur.R
~/Klausur/EU2024.R
~/Klausur/Quallen.R
~/Übungen/Clustering.R
~/Klausur/Klausur.R
~/Clustering.R

View file

@ -0,0 +1,3 @@
/home/rstudio/Klausur/EU2024.R="CDA5DCF8"
/home/rstudio/Klausur/Quallen.R="2557301F"
/home/rstudio/Übungen/Clustering.R="D5D9218C"

View file

@ -0,0 +1,5 @@
{
"debugBreakpointsState": {
"breakpoints": []
}
}

View file

@ -0,0 +1,9 @@
{
"sortOrder": [
{
"columnIndex": 2,
"ascending": true
}
],
"path": "~/Klausur"
}

View file

@ -0,0 +1,3 @@
{
"activeTab": 0
}

View file

@ -0,0 +1,14 @@
{
"left": {
"splitterpos": 216,
"topwindowstate": "NORMAL",
"panelheight": 707,
"windowheight": 781
},
"right": {
"splitterpos": 466,
"topwindowstate": "MINIMIZE",
"panelheight": 707,
"windowheight": 781
}
}

View file

@ -0,0 +1,5 @@
{
"TabSet1": 0,
"TabSet2": 1,
"TabZoom": {}
}

View file

@ -0,0 +1,11 @@
activeClientUrl="http://192.168.12.151:8787/"
build-last-errors="[]"
build-last-errors-base-dir=""
build-last-outputs="[]"
compile_pdf_state="{\"tab_visible\":false,\"running\":false,\"target_file\":\"\",\"output\":\"\",\"errors\":[]}"
displayName="rstudio"
files.monitored-path=""
find-in-files-state="{\"handle\":\"\",\"input\":\"\",\"path\":\"\",\"regex\":false,\"ignoreCase\":false,\"results\":{\"file\":[],\"line\":[],\"lineValue\":[],\"matchOn\":[],\"matchOff\":[],\"replaceMatchOn\":[],\"replaceMatchOff\":[]},\"running\":false,\"replace\":false,\"preview\":false,\"gitFlag\":false,\"replacePattern\":\"\"}"
imageDirtyState="1"
portToken="13f5df54ed21"
saveActionState="0"

View file

@ -0,0 +1,16 @@
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ ls
[?2004l Daten Klausur Übungen Vorlesungen
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ ^[[200~sudo apt-get install tcl8.6
[?2004l bash: $'\E[200~sudo': command not found
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ ~sudo apt-get install tcl8.6
sudo apt-get install tcl8.6

[?2004l bash: ~sudo: command not found
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ ~sudo apt-get install tcl8.6
[?2004l E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied)
E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root?
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ sudo su
[?2004l [sudo] password for rstudio:
rstudio is not in the sudoers file.
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$ ^C[?2004l [?2004h[?2004l
]0;~[?2004h]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$  ]0;rstudio@a17f3f7024de: ~rstudio@a17f3f7024de:~$

View file

@ -0,0 +1,53 @@
{
"RSTUDIO_CLI_HYPERLINKS": "true",
"RSTUDIO_TERM": "6A59E508",
"HISTCONTROL": "ignoreboth",
"RSTUDIO_USER_IDENTITY": "rstudio",
"HOSTNAME": "a17f3f7024de",
"RS_RPOSTBACK_PATH": "/usr/lib/rstudio-server/bin/rpostback",
"RS_SESSION_TMP_DIR": "/var/run/rstudio-server/rstudio-rsession",
"RS_SERVER_RPC_SOCKET_PATH": "/var/run/rstudio-server/rstudio-rserver/session-server-rpc.socket",
"SED": "/usr/bin/sed",
"RSTUDIO_R_MODULE": "",
"RMARKDOWN_MATHJAX_PATH": "/usr/lib/rstudio-server/resources/mathjax-27",
"TAR": "/usr/bin/tar",
"EDITOR": "vi",
"PWD": "/home/rstudio",
"LOGNAME": "rstudio",
"RSTUDIO_PROJ_NAME": "",
"RSTUDIO_R_VERSION_LABEL": "",
"TZ": "Etc/UTC",
"RSTUDIO_R_REPO": "",
"HOME": "/home/rstudio",
"LANG": "en_US.UTF-8",
"S6_VERSION": "v2.1.0.2",
"LS_COLORS": "rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=00:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.avif=01;35:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.webp=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:*~=00;90:*#=00;90:*.bak=00;90:*.crdownload=00;90:*.dpkg-dist=00;90:*.dpkg-new=00;90:*.dpkg-old=00;90:*.dpkg-tmp=00;90:*.old=00;90:*.orig=00;90:*.part=00;90:*.rej=00;90:*.rpmnew=00;90:*.rpmorig=00;90:*.rpmsave=00;90:*.swp=00;90:*.tmp=00;90:*.ucf-dist=00;90:*.ucf-new=00;90:*.ucf-old=00;90:",
"RSTUDIO_CONSOLE_COLOR": "256",
"MPLENGINE": "tkAgg",
"RSTUDIO_PROGRAM_MODE": "server",
"PROMPT_COMMAND": "(_RS_PWD=$(dirs +0); echo -ne \"\\033]0;${_RS_PWD}\\007\"; unset _RS_PWD)",
"RSTUDIO_USER_IDENTITY_DISPLAY": "rstudio",
"CLICOLOR_FORCE": "1",
"TERM": "xterm-256color",
"USER": "rstudio",
"CRAN": "https://p3m.dev/cran/__linux__/noble/latest",
"DISPLAY": ":0",
"SHLVL": "1",
"PAGER": "/usr/bin/pager",
"RSTUDIO_CONSOLE_WIDTH": "82",
"RSTUDIO": "1",
"LD_LIBRARY_PATH": "/usr/local/lib/R/lib:/lib:/usr/local/lib:/usr/lib/x86_64-linux-gnu:/usr/lib/jvm/java-21-openjdk-amd64/lib/server",
"RSTUDIO_CHILD_PROCESS_PANE": "terminal",
"RSTUDIO_R_PRELAUNCH_SCRIPT": "",
"RS_SERVER_URL": "http://192.168.12.151:8787/",
"RSTUDIO_HTTP_REFERER": "http://192.168.12.151:8787/",
"RS_PORT_TOKEN": "90892ae152fb",
"MAKE": "make",
"RS_SESSION_URL": "",
"CWD": "/",
"BROWSER": "/usr/lib/rstudio-server/bin/postback/rpostback-browser",
"PATH": "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/rstudio-server/bin/quarto/bin:/usr/lib/rstudio-server/bin/postback:/usr/bin",
"DEFAULT_USER": "rstudio",
"RSTUDIO_PANDOC": "/usr/lib/rstudio-server/bin/quarto/bin/tools/x86_64",
"LN_S": "ln -s"
}

View file

@ -0,0 +1 @@
[{"handle":"6A59E508","caption":"Terminal 1","show_on_output":false,"interaction_mode":2,"max_output_lines":1000,"buffered_output":"\n\n\n\n","exit_code":129,"terminal_sequence":1,"allow_restart":true,"title":"rstudio@a17f3f7024de: ~","child_procs":false,"shell_type":"default","channel_mode":1,"channel_id":"6332","alt_buffer":false,"cwd":"~","cols":130,"rows":14,"restarted":false,"autoclose":1,"zombie":false,"track_env":true}]

View file

@ -0,0 +1 @@
2786b374=""

View file

@ -0,0 +1,3 @@
{
"context_id": "F27CBC7D"
}

View file

@ -0,0 +1 @@
{"active_set":"","sets":[]}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

Some files were not shown because too many files have changed in this diff Show more