Saturday, April 21, 2018

Macos: Hide extra partitions in Clover

List partitions :
List UUID of partitions to hide :
Hide the UUID in Clover Configurator | Gui | Hide Volume :

Sunday, April 15, 2018

Macos: Where is my Firefox profile ?

  • Suppose you want to retrieve your Firefox profile and move it because it has initially been installed on another HDD.
  • Copy your profile directory from your old HDD, e.g. :
/Volumes/osx/Users/jerome/Library/Application\ Support/Firefox/Profiles/2ii3i4a1.default/
  • Into the new disk at :
/Users/jerome/Library/Application\ Support/Firefox/Profiles/
  • Copy the name of the default profile that has been created on the new disk
  • Remove this default profile 
  • Rename the old default profile like the new one just copied.

Macos: how to tab between buttons

Wednesday, April 11, 2018

Linux: Find Out What Process Are Using Swap Space

Source : Linux: Find Out What Process Are Using Swap Space
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less