Apache2 나 기타 웹서버를 그 컴퓨터에서 돌리고 있으면 login 이 안되고 먹통 또는 이상한 페이지로 redirect 되면서 안된다.

 

Stop 하고 진행하면 잘 된다. Windows XAMPP 나 Linux Apache2 모두 해당.

,

모니터가 없는 headless 로 부팅하면 gui 가속 즉 2d 가속이 안된다. Dummy hdmi 를 구입해서 붙이거나 부팅시에 모니터 물려야. Headless driver 로는 해결안됨

,

일반 드라이버는 모든 것을 포함히고 지원은 1년

Server 는 i386 같은 일부가 빠지고 지원은 2년

Headless 는 display 가 모두 빠진 드라이버

 

,

winsat disc -drive c 

,

1) "Ubuntu-24.04" 부분은 다른 것으로 대체 가능

c:\wsl.exe -l

해서 인스톨된 wsl 의 list 중에서 선택하면 된다. 

2) ports 부분도 바꾼다.

3) 작업스케줄러 -> 시스템시작시에 등록.

 

wsl-connect-external.ps1

#PowerShell.exe -ExecutionPolicy Bypass -File .\wsl-forward-server.ps1
$remoteport = wsl.exe -d Ubuntu-24.04 -e bash -c "ifconfig eth0 | grep 'inet '"
$found = $remoteport -match '\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}';

if( $found ){
  $remoteport = $matches[0];
} else{
  echo "The Script Exited, the ip address of WSL 2 cannot be found";
  exit;
}

#[Ports]

#All the ports you want to forward separated by coma
$ports=@(80,443,10000,3000,5000);


#[Static ip]
#You can change the addr to your ip config to listen to a specific address
$addr='0.0.0.0';
$ports_a = $ports -join ",";


#Remove Firewall Exception Rules
iex "Remove-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' ";

#adding Exception Rules for inbound and outbound Rules
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Outbound -LocalPort $ports_a -Action Allow -Protocol TCP";
iex "New-NetFireWallRule -DisplayName 'WSL 2 Firewall Unlock' -Direction Inbound -LocalPort $ports_a -Action Allow -Protocol TCP";

for( $i = 0; $i -lt $ports.length; $i++ ){
  $port = $ports[$i];
  iex "netsh interface portproxy delete v4tov4 listenport=$port listenaddress=$addr";
  iex "netsh interface portproxy add v4tov4 listenport=$port listenaddress=$addr connectport=$port connectaddress=$remoteport";
}
,

https://github.com/jncraton/languagemodels

 

GitHub - jncraton/languagemodels: Explore large language models in 512MB of RAM

Explore large language models in 512MB of RAM. Contribute to jncraton/languagemodels development by creating an account on GitHub.

github.com

 

상용인듯 한데 그래도 쉽게 써볼 있는 장점이 있다.

max_ram 을 512M ~ 8G 까지 조정해서 여러 모델을 쉽게 사용할 수 있는듯.

 

max_ram

0.5 LaMini-Flan-T5-248M 0.248
1.0 LaMini-Flan-T5-783M 0.783
2.0 LaMini-Flan-T5-783M 0.783
4.0 flan-alpaca-gpt4-xl 3.0
8.0 openchat-3.5-0106 7.0

 

,

https://pureinfotech.com/disable-lock-screen-windows-10/#disable_lockscreen_windows10_regedit

 

Disable Windows 10 Lock Screen from Registry

Windows 10 Home doesn’t include the Local Group Policy Editor, but it is still possible to disable the feature by modifying the Registry. This method works in the Home edition as well as on Windows 10 Pro, Enterprise, and Education.

To disable the Lock Screen through the Registry, use these steps:

  1. Open Start.
  2. Search for regedit, and select the top result to open the Registry.
  3. Browse the following path:
  4. HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows
  5. Right-click the Windows key (folder), select the New submenu, and choose the Key option.
  6. Name the key Personalization and press Enter.
  7. Right-click the Personalization folder, select the New submenu, and choose the DWORD option.
  8. Name the key Nolockscreen and press Enter.
  9. Double-click the Nolockscreen key and set its value data from 0 to 1 to disable the Lock Screen.
  10. Click the OK button.
  11. Reboot the computer.

After you restart your computer, Windows 10 will bypass the Lock Screen and go straight to the sign-in screen.

If you prefer accessing your account without typing a password and skipping the signing-in screen, you can use these instructions to remove the login password in three different ways.

'컴퓨터 이야기~ > 소프트웨어' 카테고리의 다른 글

WSL2 port forwarding script  (0) 2024.09.30
512 메가 램에서도 써볼 수 있는 LLM  (0) 2024.07.14
이미지 뷰어 - FastStone  (0) 2024.06.15
js obfuscator  (0) 2024.06.06
js 로만 이루어진 captcha 인듯  (0) 2024.06.06
,

정말 빠르다. AcdSee 보다 빠른듯한 느낌.

 

https://www.faststone.org/FSIVDownload.htm

,

,

https://github.com/robiveli/js-captcha

 

,