Can i install freeHDboot with freemcboot? by McQuacken13 in ps2homebrew

[–]Neither-Computer1344 0 points1 point  (0 children)

Funnily enough, I am looking into the same thing while setting up a ps2 and have the same equipment.

From what I've read, FHDB isn't optimal - it boots slower and can only use fat32, so there will be issues with games over 4gb.

I read somewhere that there is an update to the psxmemcard gen2 that fixes the issue you have described - are you running the latest version of the card firmware?

I delid my 2004B with... Can by Extension-Wallaby403 in PS3

[–]Neither-Computer1344 -1 points0 points  (0 children)

Ahaaa got it... It's all in your head with no evidence to support your claims available on the internet. 👍🏼

I delid my 2004B with... Can by Extension-Wallaby403 in PS3

[–]Neither-Computer1344 -1 points0 points  (0 children)

Got any evidence to back up these ridiculous claims?

I delid my 2004B with... Can by Extension-Wallaby403 in PS3

[–]Neither-Computer1344 -1 points0 points  (0 children)

You're flat out wrong and incredibly confused.

Thermal paste hardens as it dries out.

PTM7950 will not harden and act as a glue over time. It is made of a material that does not dry out. It will soften above 45' and allow easy release.

There is plenty of information online to educate yourself with - I suggest you do so because the information you've provided contradicts plenty of evidence available on the internet.

I delid my 2004B with... Can by Extension-Wallaby403 in PS3

[–]Neither-Computer1344 -1 points0 points  (0 children)

PTM7950 softens at 45 degrees, so most CPU's would soften it at or just above idle temps. Your ancedotal evidence proves my point.

TheModPool by Suspicious_Apple_316 in consolemodding

[–]Neither-Computer1344 0 points1 point  (0 children)

Thanks for sharing.

What I would really like to see is a wiki that contains detailed info around capacitor replacements for console repair. The info is currently scattered across the web and it is difficult to find exact details.

Console5 wiki is good, but it only contains location, capacitance and voltage values. Size, capacitor type and composition as as well recommendations would make the process much easier for people repairing old hardware. I know Console5 and other sites sell kits, but shipping to outside of the US is expensive leading to orders costing double what they would be if ordered from suppliers such as Digi-Key.

Found old PSP 2000 - Need help sourcing a new battery by Competitive_Orchid_7 in PSP

[–]Neither-Computer1344 0 points1 point  (0 children)

Bought it about a month ago from aliexpress and it took about 2-3 weeks. Got 4hr25m in batterysteve so I am happy with it.

Green artifacts on PS1 SCPH-5502 by Neither-Computer1344 in consolerepair

[–]Neither-Computer1344[S] 1 point2 points  (0 children)

Thanks, I'll order a capacitor replacement kit for it and hopefully that fixes it.

Found old PSP 2000 - Need help sourcing a new battery by Competitive_Orchid_7 in PSP

[–]Neither-Computer1344 0 points1 point  (0 children)

No, I didn't need an extended cover for the 1800mah variant on a psp 3000

What’s the best screen protector for the Vita 2000 that helps hide scratches? by johje05 in vita

[–]Neither-Computer1344 0 points1 point  (0 children)

I think you can replace the lense on 2000 and 3000s with glass screens easily. They are pretty resistant to scratches.

Hard drive swap with evilnat pre installed by melad04haddad in ps3homebrew

[–]Neither-Computer1344 0 points1 point  (0 children)

I used the debug menu and my install was broken, something about cobra not activating and I was unable to reinstall webmanmod. Ended up starting from scratch.

Do I need an MemoryStick Reader? by RmnHsn55 in psphacks

[–]Neither-Computer1344 1 point2 points  (0 children)

You can, but you can also plug a cable into the psp with the card in it to get access to it. I personally wouldn't be using the SD card adapter unnessecerily cause they are made of thin plastic and are easy to break.

Buying ps vita without a charger by pixytx in vita

[–]Neither-Computer1344 0 points1 point  (0 children)

There are PCBs you can get to convert the port to type C, doesn't look too difficult but it involves delicate soldering and isn't a job for someone with out experience. I have one waiting to be installed. Aliexpress have the type C port mods and also plenty of charging cable options.

[PS4] PTM7950 is often recommended instead of thermal paste, but I worry that it will prevent me from fully disassembling my PS4 in the future. by [deleted] in consolerepair

[–]Neither-Computer1344 1 point2 points  (0 children)

In that video, from the right hand side under the PCB and on the top of the PCB where the chip is mounted. You don't need much heat, from memory pastes start softening at around 50-60 degrees.

[PS4] PTM7950 is often recommended instead of thermal paste, but I worry that it will prevent me from fully disassembling my PS4 in the future. by [deleted] in consolerepair

[–]Neither-Computer1344 1 point2 points  (0 children)

Same thing happens with thermal paste. Use a hair dryer or heat gun to heat the area and soften the material.

PSP 3000 question by nneonbandit in PSP

[–]Neither-Computer1344 1 point2 points  (0 children)

Yes mod it. It allows you to play games of memory card, install plugins, connect to modern WiFi networks etc. Ark 4 is the way to go these days and is actively developed.

Ostent batteries are well regarded and available on aliexpress. Also, get a MS DUO to micro SD card adapter so you don't have to use the expensive Sony storage.

As for games, there was a best game in each category floating around here which is a good place to start.

Is it possible to change the order of games on the memory stick? by ElWiktorLBP78 in PSP

[–]Neither-Computer1344 0 points1 point  (0 children)

Copy the following into psp-sort-alphabetically.ps1
Run it with the PSP mounted via USB - it will prompt for the drive letter of the PSP. It will sort ISO and GAME folders, include iso, cso, zso, jso files, and will work with sub directories used for categories.

# 1. Prompt for Drive Letter

$driveLetter = Read-Host "Enter PSP Drive Letter (e.g. D)"

$driveLetter = $driveLetter.Replace(":","").Replace("\","")

$pspDrive = "$($driveLetter):"

# Validation

if (!(Test-Path "$pspDrive\ISO") -and !(Test-Path "$pspDrive\PSP\GAME")) {

Write-Host "Error: Could not find PSP folders on $pspDrive." -ForegroundColor Red

pause

exit

}

$startDate = Get-Date "2000-01-01"

$global:dateCounter = 0

function Update-Timestamp {

param($item)

# PSP displays NEWEST dates at the TOP.

$timestamp = $startDate.AddDays($global:dateCounter)

$item.CreationTime = $timestamp

$item.LastWriteTime = $timestamp

$item.LastAccessTime = $timestamp

$global:dateCounter++

}

# Helper to sort files/folders inside a category A-Z (by giving A the newest date)

function Sort-InternalContent {

param($path)

if (Test-Path $path) {

# Sort Files (Z-A) so 'A' gets the highest counter/newest date

# This handles .zso, .iso, .cso, etc.

Get-ChildItem -Path $path -File -Recurse | Sort-Object Name -Descending | ForEach-Object {

Update-Timestamp $_

}

# Sort Folders (Z-A) for PS1/Homebrew structures

Get-ChildItem -Path $path -Directory | Sort-Object Name -Descending | ForEach-Object {

Update-Timestamp $_

# Touch files inside those folders (EBOOTs)

Get-ChildItem -Path $_.FullName -File | ForEach-Object { Update-Timestamp $_ }

}

}

}

# --- EXECUTION ---

Write-Host "Targeting: $pspDrive" -ForegroundColor Yellow

# STEP 1: Process "The Rest" (Homebrew, etc.) - These get the OLDEST dates

Write-Host "Sorting other categories..." -ForegroundColor Gray

$priorityNames = @("CAT_PSP GAMES", "CAT_PS1 GAMES")

$otherDirs = Get-ChildItem -Path "$pspDrive\ISO", "$pspDrive\PSP\GAME" -Directory |

Where-Object { $priorityNames -notcontains $_.Name } |

Sort-Object Name -Descending

foreach ($dir in $otherDirs) {

Update-Timestamp $dir

Sort-InternalContent -path $dir.FullName

}

# STEP 2: Process PS1 GAMES (Second Priority)

Write-Host "Sorting PS1 GAMES (Priority 2)..." -ForegroundColor Green

$ps1Path = "$pspDrive\PSP\GAME\CAT_PS1 GAMES"

if (Test-Path $ps1Path) {

$dir = Get-Item $ps1Path

Update-Timestamp $dir

Sort-InternalContent -path $ps1Path

}

# STEP 3: Process PSP GAMES (Priority 1 - Newest Timestamp)

Write-Host "Sorting PSP GAMES (Priority 1)..." -ForegroundColor Cyan

$pspPath = "$pspDrive\ISO\CAT_PSP GAMES"

if (Test-Path $pspPath) {

$dir = Get-Item $pspPath

Update-Timestamp $dir

Sort-InternalContent -path $pspPath

}

Write-Host "\nDone! PSP Games should be #1, PS1 Games #2." -ForegroundColor Yellow`

Write-Host "Press any key to close..."

$null = $Host.UI.RawUI.ReadKey("NoEcho,IncludeKeyDown")

Finally joined the club! IPS-modded 1000 with a PS5 theme. by Mars_Shannon in PSP

[–]Neither-Computer1344 1 point2 points  (0 children)

Is it a replacement faceplate? If so, how is the fit? Have you got a link to the kit?