All public logs

Jump to navigation Jump to search

Combined display of all available logs of rbachwiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View (newer 20 | ) (20 | 50 | 100 | 250 | 500)
  • 18:24, 7 March 2024 Bacchas talk contribs created page Update Windows From PowerShell (Created page with "**Install Windows Update Module - Install-Module PSWindowsUpdate. **Check and Download the latest updates - Get-WindowsUpdate **Install the latest updates - Install-WindowsUpdate")
  • 16:39, 28 August 2023 Bacchas talk contribs created page Fix Windows Update (Created page with "* Run CMD as Admin Stop Update Services * net stop bits (Background intelligent service) * net stop wuauserv * net stop appidsvc * net stop cryptsvc cd\ cd Program Data cd Application Data cd Microsoft cd Network cd Downloader * Delete all the files in the Downloader Dir")
  • 20:34, 28 June 2023 Bacchas talk contribs created page Ftp Server (Created page with "== Setting up an FTP server == apt install vsftpd ftp ufw '''Check Status to see if it's running''' systemctl status vsftpd '''If it shows disabled''' systemctl enable vsftpd ''' if it's not running ''' systemctl start vsftpd == Create an ftp user == useradd -m bach ''' set password ''' passwd bach")
  • 19:52, 26 June 2023 Bacchas talk contribs created page Tailscale (Created page with " ==Enable Routing on synology to access local printers== * SSH into synology sudo tailscale up --advertise-routes=192.168.20.0/24 --reset * in tailscale admin ** Right click on 3 dots ** Edit Route Settings ** Turn on node ** Right click on 3 dots again ** Disable key expiration * Resetting back node to default sudo tailscale up --reset")
  • 15:05, 15 June 2023 Bacchas talk contribs created page Make copy of file and copy to Server (Created page with " <pre> #!/bin/bash clear echo -e " +++++ Making a backup copy of sql file in the web folder ++++++++++++++++ \n" ansible-playbook /etc/ansible/playbook/backupsqlfirst.yml sleep 5 echo -e "++++++++++ Copying to local web folder ++++++++++++++ \n" ansible-playbook /etc/ansible/playbook/cplocal.yml sleep 5 ansible-playbook /etc/ansible/playbook/copytorb222.yml --private-key ~/.ssh/ansible echo "+++++ Done ++++++" </pre> <h4 class="bluebackground">backup...")
  • 14:49, 15 June 2023 Bacchas talk contribs created page Download backup file from remote and copy to Synology (Created page with "<h4> NOTE: File must already exist and you must know the exact filename that is being downloaded</h4> <h4 class="yellowbackground">opidwnlfromremotetolocal.sh</h4> <pre> #!/bin/bash d=`date +%Y%m%d` n="opilocal-" e=".jpa" name=$n$d$e #dest='/volume1/Linode/' scp -i ~/.ssh/linode 173.255.229.40:/var/www/html/opilocal/akbackup/$name . echo "+++++++++ done copying form Remoge ++++++++++++++++++" sleep 3 scp -i ~/.ssh/synology $name admin@192.168.20.120:/volume1/Linode/op...")
  • 13:27, 15 June 2023 Bacchas talk contribs created page Backup html folder, backup SQL Database and download locally (Created page with "==Master Script== <pre> echo "-----------------------------------" echo "" echo "++++++++++ Running backup script, zipping dir and dump sql database ++++++++++" echo "" clientscripts/./client_run_backup_sql_zip.sh sleep 5 echo "-----------------------------------" echo "" echo "++++++++++ Download zip and sql files and copy to synology ++++++++++" echo "" echo "" clientscripts/./client_dlzipsql_cpto_synology.sh sleep 5 echo "-----------------------------------" echo ""...")
  • 13:26, 15 June 2023 Bacchas talk contribs created page Scripts used on Servers (Created page with "Backup html folder, backup SQL Database and download locally")
  • 19:52, 26 April 2023 Bacchas talk contribs created page Create a Django App (Created page with " python manage.py startapp myapp * this will create an new app in the projectname folder * cd into my app folder and create a folder called templates * create an html file in the templates folder * Link the new template folder to the project * edit the settings.py file import os * Scroll down to "TEMPLATES", edit section DIRS 'DIRS': [os.path.join(BASE_DIR, "myapp/templates")] * Edit the views.py in your myapp folder def myview(request): return render(request,...")
  • 19:50, 26 April 2023 Bacchas talk contribs created page Create a new project (Created page with "* First create a main dir django etc.. * cd into directory django-admin startproject projectname * this will create the projectname within the main directory * cd into directory python manage.py runserver * To specify a different port python manage.py runserver 8080")
  • 20:07, 24 April 2023 Bacchas talk contribs created page Django (Created page with "==Create a new project== django-admin startproject projectname")
  • 19:56, 24 April 2023 Bacchas talk contribs created page Anaconda (Created page with "<h2> Create Anaconda environment</h2> * Open Anaconda command prompt conda create -n NameOfEnvironment python=3.9\ <h2> Activate Environment </h2> conda activate NameOfEnvironment <h2> To deactivate environment </h2> conda deactivate <h2> Update Anaconda base </h2> conda update -n base -c defaults conda")
  • 14:47, 24 April 2023 Bacchas talk contribs created page Fix Broken Windows Files - System file checker (Created page with " '''Quick health check''' dism /online /cleanup-image /checkhealth '''Longer Scan''' dism /online /cleanup-image /scanhealth '''Scan and fix problems''' dism /online /cleanup-image /restorehealth '''If dism can't fix system files''' '''Open browser, search for "media creation tool" ''' '''Download "create windows 10 installation media"'''")
  • 17:41, 24 March 2023 Bacchas talk contribs created page Rename files using excel as source template (Created page with "<pre> import os import pandas as pd import shutil os.chdir('C:\\Users\\bacchas\\Downloads\\test') data = pd.read_excel(r"rename.xlsx") orginal = "C:\\Users\\bacchas\\Downloads\\test\\original" dest = "C:\\Users\\bacchas\\Downloads\\test\\img" old = data['oldname'] new = data['newname'] for (old, new) in zip(old,new): full_file_name = os.path.join(orginal,old) full_file_name_old = os.path.join(dest,old) full_file_name_new = os.path...")
  • 15:39, 17 March 2023 Bacchas talk contribs created page Fix Python Errors (Created page with "==FIX ERROR - The term 'pyinstaller' is not recognized== py -m pip install pyinstaller")
  • 16:51, 6 February 2023 Bacchas talk contribs created page Synology Nas (Created page with "==How do I sign in to DSM with RSA key pairs via SSH?== '''Generate Key pair on local computer''' *Sign in to DSM as an administrator. *Go to DSM File Station > home. *Create an sub-folder named .ssh. *Upload the public key id_rsa.pub to the .ssh folder.")
  • 16:04, 27 December 2022 Bacchas talk contribs created page Synology WiFi Router (Created page with "==Setting up a synology WiFi Access Point== Router has to be setup in WiFi mode first, which means: don't connect the the Ethernet wire.")
  • 16:01, 27 December 2022 Bacchas talk contribs created page Hardware (Created page with "==Synology WiFi Router==")
  • 18:06, 29 November 2022 Bacchas talk contribs created page Upgrade to PHP 8.1 (Created page with " $ sudo apt update $ sudo apt upgrade $ sudo apt install ca-certificates apt-transport-https software-properties-common ===Add the Reoository == sudo add-apt-repository ppa:ondrej/php")
  • 15:29, 30 September 2022 Bacchas talk contribs created page AlpineJS (Created page with "=AlpineJS=")
(newest | oldest) View (newer 20 | ) (20 | 50 | 100 | 250 | 500)