Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Dronecatcher

macrumors 603
Jun 17, 2014
5,247
7,882
Lincolnshire, UK
I had a Sanyo Katana from 2007 to 2009 I think. Like @Amethyst1 I didn't bother much with the camera. Getting images off the phone was a problem and even at full resolution they weren't that good.
My 7650 peak output was VGA....but until I bought a Bluetooth dongle (which my daughter rightly pointed out was "blue but it's not a tooth") could only get photos off the phone by emailing them to myself!
 

Amethyst1

macrumors G3
Oct 28, 2015
9,792
12,196
Nokia 7650 for me in 2002 - at that point such tech wasn't cool to most people but just plain weird!
The 7650 wasn't exactly a mainstream phone though ;) A guy at school had it back in the day. I was more interested in the fact it ran Symbian OS than the camera. The CommuniCam for the T68 (probably) predated the 7650 but I never saw that one in the wild back then. And it wasn't exactly built-in, more clip-on... ;)

1591510695_298_Flashback-Sony-Ericsson-T68-et-l39appareil-photo-complementaire-qui-l39a.jpg
 
Last edited:

Amethyst1

macrumors G3
Oct 28, 2015
9,792
12,196
Wow, I think I had a T68.
I didn't know there WAS a camera ad-on.......o_O
There’s even a version of the camera for the T39 despite it only having a tiny greyscale screen.

Ha ha - I bought one of those for my partner as she was jealous of my 7650
Man, those “superphones” sure made my poor 8210 look dated…
 
Last edited:

eyoungren

macrumors Penryn
Aug 31, 2011
29,604
28,366
My 7650 peak output was VGA....but until I bought a Bluetooth dongle (which my daughter rightly pointed out was "blue but it's not a tooth") could only get photos off the phone by emailing them to myself!
I had three methods (pre-Dropbox)…

Email. I was with Sprint then, so consequently due to their servers what you got emailed was low resolution. Completely dumb considering the phone camera resolution was low anyway!.

Sprint's photo website system. Still low resolution.

BitPim. BitPim marked my first attempts to start working around Apple and my carrier's limitations. I could get full res photos from my Katana but I had a finicky connector and it didn't always work well. But Sprint provided no other way to directly get your photos off your phone. To this day, I still have the app in my Applications folder. :)
 

netsrot39

macrumors 6502
Feb 7, 2018
360
502
Austria
Well, apparently I used 5 ram disks of 2GB each.

Anyway: https://forums.macrumors.com/threads/favorite-software-setup.2308073/?post=30192445#post-30192445

Just follow the directions. The script in there will automate the RAIDing, but I never figured out a way to automate the creation of the RAM disks. There is probably a way to do that but I didn't search very hard because I don't often reboot - which would make me want to figure it out.

Back in June I asked about RAM disks larger than 2 GB. OS X versions prior to Snow Leopard do unfortunately have some limit in place so the post of eyoungren inspired me to try to create multiple ones and merging them afterwards. I've also wanted something that can be automated.

I wrote a little script (or rather copy and pasted something together) that will just do that:

Code:
do shell script "diskutil erasevolume HFS+ 'r1' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r2' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r3' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r4' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r5' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil createRAID concat 'RamDisk' HFS+ /Volumes/r1 /Volumes/r2 /Volumes/r3 /Volumes/r4 /Volumes/r5" user name "USER" password "PW" with administrator privileges

This will create a RAM disk that has approximately 8GB in size. Below you'll find a speed test of said merged RAM Disk:

speedtest_ramdisk.png

If one wants to automate the process just paste the code into Script Editor and create an .app file. Next, just go to System Preferences and add the .app file to your startup items.

Since I have 16GB of RAM installed in my G5, I think an 8 GB RAM Disk is very appropriate. My G5 hardly ever uses more than 4GB of RAM with regular use and I want to make use of most of the available memory. Use cases of RAM disks are many but for me it is primarily having a really fast drive and also having a drive for files I do not need anymore after my session (avoid clutter in the first place).
 

eyoungren

macrumors Penryn
Aug 31, 2011
29,604
28,366
Back in June I asked about RAM disks larger than 2 GB. OS X versions prior to Snow Leopard do unfortunately have some limit in place so the post of eyoungren inspired me to try to create multiple ones and merging them afterwards. I've also wanted something that can be automated.

I wrote a little script (or rather copy and pasted something together) that will just do that:

Code:
do shell script "diskutil erasevolume HFS+ 'r1' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r2' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r3' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r4' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil erasevolume HFS+ 'r5' `hdiutil attach -nomount ram://3663872`"

do shell script "diskutil createRAID concat 'RamDisk' HFS+ /Volumes/r1 /Volumes/r2 /Volumes/r3 /Volumes/r4 /Volumes/r5" user name "USER" password "PW" with administrator privileges

This will create a RAM disk that has approximately 8GB in size. Below you'll find a speed test of said merged RAM Disk:

View attachment 2027134
If one wants to automate the process just paste the code into Script Editor and create an .app file. Next, just go to System Preferences and add the .app file to your startup items.

Since I have 16GB of RAM installed in my G5, I think an 8 GB RAM Disk is very appropriate. My G5 hardly ever uses more than 4GB of RAM with regular use and I want to make use of most of the available memory. Use cases of RAM disks are many but for me it is primarily having a really fast drive and also having a drive for files I do not need anymore after my session (avoid clutter in the first place).
Nice!

At some point I will get my Quad back up and add this to the mix. I was using a RAM disk for much the same reason as you. But I also moved the T4Fx app and my profile/cache into the RAM disk. An up to date copy of that stuff was kept on my HD and reloaded each time I rebooted and mounted the RAM disk.
 
  • Like
Reactions: netsrot39

eyoungren

macrumors Penryn
Aug 31, 2011
29,604
28,366
Ain't your poor electricity bill high enough yet? :D

(Just kidding. I know where you're coming from.)
I need to finish organizing the garage…

Which means organizing all the tech stuff, bits, parts, screws, junk, etc that's out there…

Then, I need to decide where the damn thing is going, then run cords so I can hook up a power strip…

Then replace the 20" ACD with something else so the 20" ACD can get hooked back up to the Quad. Then find two new hard drives for the Quad, because both those drives ended up in the MacPro.

Then clone the last save back…

See…easy. I'll get back to you on it in a few years. ;)
 

eyoungren

macrumors Penryn
Aug 31, 2011
29,604
28,366
Hi @eyoungren ! Could you please explain me what a NAS is and how do you use your G4 as a NAS?
I am totally ignorant with that.
NAS is short for Network Attached Storage. These are boxes that you can fill with hard drives (or SSDs) and plug an ethernet cable into. The firmware they come with is designed to share those drives on a network. Apple's concept of a NAS is the old Apple Time Capsules.

You can access the NAS interface by using a web browser to go to it's IP address. Once logged in you can format drives, create a RAID, decide how the drive will be shared on the network, etc.

In the context of my G4 I simply have the G4 booted into my account. I used file sharing inside System Preferences to share the two internal hard drives to my home network. That's all the G4 is doing - file sharing those two drives. So, I refer to it as my G4 NAS because it's doing the exact same function as you'd find a real NAS doing, only it's an actual computer. It's a 'glorified' NAS if you will because its an actual real computer doing the sharing - something NAS boxes are not.

My G4 has two 3TB hard drives for a total of 6TBs shared to the network.

But, in addition to the G4 sharing its drives, I also have a real NAS - attached via ethernet cable to my network just as I explained above.

2022-07-10 14.42.02.jpg


Screen Shot 2022-07-10 at 14.52.42.jpg

Above is the homepage for my real NAS.

This box also has two 3TB hard drives. But I have them set as a RAID-0 which means the drives capacities are combined and the entire thing is presented to the network as a single 6TB drive. I just call this my NAS, because that's what it is.

That is why I say G4 NAS, or my NAS - because one is just shared drives from a G4 and the other is an actual NAS.
 
Last edited:

eyoungren

macrumors Penryn
Aug 31, 2011
29,604
28,366
@eyoungren wow, thanks for your detailed answer. It was very kind from you.
I do have another question: can you access your drives from external networks or only from your home network?
In both cases of the word 'you' the answer is yes. In general you can, and specifically for me, yes I can.

But external access is a function of your router and your ISP (Internet Service Provider). If we want to give ourselves external access we need to open up specific ports in our router. We then have to tell the router that any traffic coming through that port should be directed to the IP address of the computer or NAS that we want to share from. This is called port forwarding. It's important then to give the internal devices static IP addresses so that the traffic goes to the right device.

But, here's where your ISP comes in. Windows PCs are the dominant computer/OS type around the world. PCs use SAMBA (SMB) to fileshare on internal networks. SMB has some inherent security problems and when you open a port in your router you are creating a security risk. That's because routers aren't smart enough to know who is or is not a bad actor trying to access your device through the port you opened. Once they have access they can do a lot of things that violate the agreement of fair use you have with your ISP.

So, ISPs block SMB over the internet. You can open the port(s) on your router but your ISP has those ports blocked usually by default. Thus there is no way to fileshare Windows/PCs over the net using the stock filesharing protocol (SMB) that they use.

But Apple has AFP (Apple File Protocol) as well. My ISP does not block AFP ports. So, I have them open and they redirect to my server (a G3 B&W). I also have the ports that iTunes and the Server management software uses open as well. I simply need to use my external IP address to access my server from outside. Port forwarding is one device per port, so I have to choose which device on my network. I chose the server and not my NAS or my G4. I could choose those, I'd just have to change the address.

Here is my router's port forwarding page with my open ports.

Screen Shot 2022-07-10 at 15.32.25.jpg

The ones named iStat are so my iPhones can access iStat info from the internal computers that have those IP addresses. Doom is a port my son needed open for gaming and AirMessage allows my Pixel 3aXL to use an iMessage like app to connect with one of my Macs that shares iMessage to the app on the Pixel. Without that, I couldn't get iMessage on my Pixel outside of my home network.
 
Last edited:

pochopsp

macrumors 6502
Apr 6, 2016
430
310
Napoli, city of sun and pizza!
In both cases of the word 'you' the answer is yes. In general you can, and specifically for me, yes I can.

But external access is a function of your router and your ISP (Internet Service Provider). If we want to give ourselves external access we need to open up specific ports in our router. We then have to tell the router that any traffic coming through that port should be directed to the IP address of the computer or NAS that we want to share from. This is called port forwarding. It's important then to give the internal devices static IP addresses so that the traffic goes to the right device.

[ ... ]

Thanks again. So if I got it, you use your NAS and your G4 inside your home network, and the G3 server from outside. Is it right?
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.