InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 03-24-2008, 08:05 PM
R0GUE's Avatar
R0GUE R0GUE is offline
 
Join Date: Jan 2008
Location: United Kingdom
Posts: 581
For those who have updated to a new kernel but have noticed that it is still visible from within the Finder, follow this small guide.

Open the terminal and type:
Code:
cd /
pico .hidden
mach_kernel
Now press "ctrl+x" then "y" to save.

You'll need to restart the Finder to notice the effects. Either type in the Terminal:
Code:
killall Finder
or go to the Apple Menu>Force Quit>Finder>Relaunch.

The kernel should now be hidden.

MacBook Pro 15" | Mac OS X 10.6 2 GHz Intel Core Duo 2 GB DDR2-667 ATI Radeon Mobility X1600 128 MB 100 GB Serial-ATA
Hackintosh | Mac OS X 10.5.6 3 GHz AMD Athlon 64 X2 6000+ MSI K9N AM2 2 GB DDR2-667 NVIDIA GeForce 8800 GT 512 MB ALC888 Audio 300 GB Serial-ATA
iPhone 3G 8 GB
Reply With Quote
  #2  
Old 03-24-2008, 09:19 PM
pαuℓzurrr.'s Avatar
pαuℓzurrr. pαuℓzurrr. is offline
 
Join Date: Jan 2008
Location: The Netherlands
Posts: 280
Thnx for this! now i got a clean harddrive


Mac Inspiron 531 » 10.6.8 • 10.8.0 Legacy Kernel • AMD Athlon 64 X2 5000+ (2.60GHz)
Dell M2N61-AX/nForce 430/MCP61 • 4GB Dual Channel DDR2 667MHz
ALC888 • nVidia GeForce 8600 GT 256 MB
2 x WDC WD5000AAKS 500 GB SATA HDD
Reply With Quote
  #3  
Old 03-26-2008, 09:11 AM
CyCLoBoT CyCLoBoT is offline
Panther
 
Join Date: Feb 2008
Posts: 108
Awesome. Looks better now.
Reply With Quote
  #4  
Old 03-26-2008, 09:36 AM
bhast2 bhast2 is offline
Tiger
 
Join Date: Jan 2008
Location: USA
Posts: 396
works great thanks
got sick of looking at that file
Reply With Quote
  #5  
Old 04-01-2008, 03:34 AM
Firewalk Firewalk is offline
Panther
 
Join Date: Jan 2008
Posts: 115
Thank You..
Reply With Quote
  #6  
Old 04-03-2008, 09:12 PM
naquaada's Avatar
naquaada naquaada is offline
 
Join Date: Jan 2008
Location: Germany
Posts: 1,216
There are a lot of progs which can change the file attributes, I always use Path Finder for this.

2 Opteron systems: OSx86 10.5.8, Andy's 9.8.0 kernel, Asus A8N-SLI Premium, Opteron 185 o'clocked @ 2 x 2,95 GHz (2nd system 2.6 GHz), ATI Radeon HD2600XT 256MB Dual-Monitor 2x HP L2035, 4 GB RAM, Griffin FireWave as main audio device, Marvell + nForce LAN, Asus U3S6 USB3/SATA6 card, 5,5 TB harddisk, Firewire 800 card, Apple Remote + eHome IR receiver, 2x Wacom serial graphics tablet, Canon Pixma iP4700, Logitech Internet Navigator wireless keyboard/mouse combination.

My Audio stuff: M-Audio Transit USB (default audio), M-Audio ProFire 610, M-Audio ProFire Lightbridge (34 channels) using Creamware A16 ADAT converter MIDI: M-Audio Midiman 4x MIDI interfaceBehringer Audio Mixers: Xenyx 1002, Xenyx 1002FX, Xenyx 1202FX, Eurorack UB1002FX, Eurorack MX1804FX, Eurorack MX262A • FX devices: Lexicon MPX100 DSP, Behringer DSP-1000 Virtualizer, Behringer MiniFEX 800 DSP, Behringer Multicom Pro MDX4400 compressor RETRO: MSSIAH midi/sequencer/synthesizer cardridge for the C64 (Dual-SID), Steinberg M.S.I. MIDI Interface for C64
Reply With Quote
  #7  
Old 12-06-2008, 07:24 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
Microsoft User Data Folder (made invisible)

I don't know if this will help someone out there so I'll post it as an add-on here...

I've been trying to get the "Microsoft User Data" folder to be hidden but still there so I get it out of my Documents folder in the Dock. (purely aesthetics for me)

To toggle the invisibility bit of a single file or folder you’ll need Apple's Xcode Tools software, specifically a Unix program called SetFile. It can be found in the /Developer/Tools directory.

Launch Terminal.
Code:
/Developer/Tools/SetFile -a V /Users/YourHomeDirectory/Documents/Microsoft\ User\ Data
Remember to change "YourHomeDirectory" to match your system and to not put a "/" at the end of the code as this will only set the contents of the folder to be invisible and not the folder itself.

After pressing Return/Enter, this immediately enables the invisibility bit although the file will not actually turn invisible until the Finder is relaunched... to make it invisible in the Dock you need to restart the dock as well. I use MainMenu for this as it allows me to do both very quickly via a few clicks.

To reverse directions with SetFile, you do almost the same thing with the exception it needs to be a lower case v instead of an upper case V. This disables the invisible bit.


This probably is old news but I never bothered to look into the issue until now.. I've always used the ".hidden" method for all my other needs.

Reply With Quote
  #8  
Old 12-17-2008, 12:51 PM
Ianxxx Ianxxx is offline
Leopard
 
Join Date: Jan 2008
Posts: 645
Quote:
Originally Posted by nfoav8or View Post
I don't know if this will help someone out there so I'll post it as an add-on here...

I've been trying to get the "Microsoft User Data" folder to be hidden but still there so I get it out of my Documents folder in the Dock. (purely aesthetics for me)

To toggle the invisibility bit of a single file or folder you’ll need Apple's Xcode Tools software, specifically a Unix program called SetFile. It can be found in the /Developer/Tools directory.

Launch Terminal.
Code:
/Developer/Tools/SetFile -a V /Users/YourHomeDirectory/Documents/Microsoft\ User\ Data
Remember to change "YourHomeDirectory" to match your system and to not put a "/" at the end of the code as this will only set the contents of the folder to be invisible and not the folder itself.

After pressing Return/Enter, this immediately enables the invisibility bit although the file will not actually turn invisible until the Finder is relaunched... to make it invisible in the Dock you need to restart the dock as well. I use MainMenu for this as it allows me to do both very quickly via a few clicks.

To reverse directions with SetFile, you do almost the same thing with the exception it needs to be a lower case v instead of an upper case V. This disables the invisible bit.


This probably is old news but I never bothered to look into the issue until now.. I've always used the ".hidden" method for all my other needs.
Wouldn't work unless I used /Developer/usr/bin/SetFile
otherwise great tip thanks
Reply With Quote
  #9  
Old 12-17-2008, 06:50 PM
nfoav8or's Avatar
nfoav8or nfoav8or is offline
 
Join Date: Jan 2008
Location: WA, USA
Posts: 933
Quote:
Originally Posted by Ianxxx View Post
Wouldn't work unless I used /Developer/usr/bin/SetFile
otherwise great tip thanks
weird... the method I posted above works on both my macbook and my hackintosh... the SetFile command's default install location is to where I posted. it depends on how you installed the Xcode Tools. where did you select as the install point.

Reply With Quote
  #10  
Old 12-17-2008, 07:09 PM
cmdshft's Avatar
cmdshft cmdshft is offline
Panther
 
Join Date: Dec 2008
Location: Hackensack, NJ
Posts: 240
From my experience with SetFile, you don't need to type the full path, it works with just:

Code:
setfile -a V /path/here
But yeah, you do need to have Developer Tools installed.



💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers.


Mac OS X Leopard 10.5.8 (9L30) | Chameleon 2.0 RC3 | Intel Pentium 4 3Ghz 800Mhz FSB HyperThread 1MB L2 cache SSE3 1MB L2 cache works, cosmetic display of 512KB L2 cache | Asus P4V8X-MX VIA Chipset, VIA-VT8237 Southbridge | AC97 VIA8237 | Dual 1GB 333Mhz DDR SDRAM | nVidia PNY GeForce 7600GS 512MB 8x AGP DVI/TV-Out/VGA [NVinject 0.2.1; QE/CI/QuartzGL/Rotation] | Darwin Kernel Version 9.7.0: Sun Jun 14 20:48:28 IST 2009; Voodoo 2.0 Intel alpha3 :xnu-1228.12.14/BUILD/obj/RELEASE_I386 i386

Last edited by cmdshft; 12-19-2008 at 07:13 AM.
Reply With Quote
Reply
Thread Tools
Display Modes