Wednesday, February 11, 2026

Windows antimalware executable task running as cpu hog

 
This shows how to reduce the priority of this task, which can run very long for no reason to be at high priority.

It's the windows cache maintenance.

  1. Press Windows key + R. This will open Run. Alternatively, you can go to Start and search for Run.
  2. In Run dialog box, type taskschd.msc and hit enter.
  3. Navigate to Task Scheduler Library > Microsoft > Windows > Windows Defender.
  4. On the right hand pane, double-click on Windows Defender Scheduled Scan.
  5. On the General tab, uncheck the option Run with highest privileges.
  6. Click on Conditions tab and uncheck all the options.
  7. Click on OK.

right click the task to change the privileges off

--30--

Wednesday, January 14, 2026

installing angry ipscanner on Ubuntu 18.04

 

Ubuntu 18.04 is released in 2018, so need down rev java and angry ip scanner to match

sourceforge had a page with revisions as or 1/14/2026

https://sourceforge.net/projects/ipscan/files/ipscan3-binary/

apt -y install rpm fakeroot

apt install openjdk-21-jdk

 dpkg --install ipscan_3.5.3_amd64.deb

deb file is in projects/local-systems/angry-ip/ubuntu18

ports for configuration.  Not retained on linux
 
80,443,8080,9090,3389,5900,5901,5902,5903,4200,21,22,23 

Sunday, November 9, 2025

Install , configure, anable ssh server on wsl windows 11 ubuntu

 
search terms:
https://www.google.com/search?q=install+ssh+ubuntu22.04+wsl&rlz=1C1PNKB_enUS1187US1187&oq=install+ssh+ubuntu22.04+wsl&gs_lcrp=EgZjaHJvbWUyBggAEEUYOdIBCDc0NTdqMGo3qAIAsAIA&sourceid=chrome&ie=UTF-8&zx=1762747609120&no_sw_cr=1

1. Update and Install OpenSSH Server in WSL:
Open your Ubuntu 22.04 WSL distribution and Update the package lists.
Code
  sudo apt update
Install the OpenSSH server.
Code
  sudo apt install openssh-server
enable and start the ssh service.
Code
  sudo systemctl enable ssh --now
2. Configure SSH in WSL (Optional but Recommended):
  • Edit the SSH configuration file to enhance security (e.g., change the default port, disable password authentication for key-based authentication):
Code
  sudo nano /etc/ssh/sshd_config
  • Modify or add lines as needed (e.g., Port 2222PasswordAuthentication noPubkeyAuthentication yes).
  • Save and exit the file.
  • Restart the SSH service for changes to take effect:
Code
  sudo service ssh restart
3. Set Up Port Forwarding on Windows:
  • Open PowerShell as Administrator on your Windows host.
  • Get the IP address of your WSL instance and set up port forwarding. Replace 2222 with your chosen SSH port if you changed it in sshd_config:
Code
  $wsl_ip = (wsl hostname -I).trim()  netsh interface portproxy add v4tov4 listenport=2222 listenaddress=0.0.0.0 connectport=2222 connectaddress=$wsl_ip
4. Configure Windows Firewall:
  • Open Windows Defender Firewall with Advanced Security.
  • Create a new Inbound Rule:
    • Select "Port" and click Next.
    • Choose "TCP" and enter the port number you are using for SSH (e.g., 2222).
    • Allow the connection and apply the rule to all profiles. 
    • Name the rule (e.g., "WSL SSH") and finish the wizard. 
5. Generate and Copy SSH Key (for key-based authentication):
  • Generate Key on Client (e.g., your Windows machine or another remote machine):
Oops, something we

--30--

using tapes on Hercules



devinit 0580 D:/MVS/TAPE/TST001.HET

0580 3490 *
devinit 580 c:/zos110/configs/tapes/000000.het



Instead of using "touch" to create the tape. Which, by-the-by would
not initialize the VOL1 an other header records, I'd use the hetinit
command. You have two choices. AWS format or HET format. hetinit
will create either, but defaults to het. Note also that het
formatted files must end in ".het" to be recognized by hercules as
such.

hetinit -d tape580.tape.aws 123456 owner

--30--