Skip to main content

Posts

Showing posts from March, 2011

How to permanently boot mac os x in verbose mode

We can make  mac to boot in verbose mode permanently  (i.e, show all log messages during boot) by setting the " nvram " variable in terminal.  $ sudo nvram boot-args="-v" This will set the mac to show verbose messages when every time mac os  x boots. To reset back again,  run : $ sudo nvram boot-args= Note : If you want to see the verbose messages for momentarily then hold " Command+V " during the mac booting immediately after mac starts booting

How to find firmware or boot ROM version in Mac OS X

Firmware and boot ROM version of your mac can be found in two ways. Way 1 : 1. From "Apple" menu , choose "About This Mac" menu item. 2. Click " More Info " to open "System Profiler" application. 3. Under Contents -> Select Hardware Tree item. On the right side panel Under hardware overview section, we can see Boot ROM Version and SMC (Firmware) Version. Way 2 : Run the below command in terminal to get boot ROM version and SMC(firmware) version : $ system_profiler SPHardwareDataType | grep -i "Version" | awk -F ':' '{print $1 $2}'

Changing user's default shell to new shell in linux

We can change the default shell of a user by using  "usermod" command as below. $ sudo usermod -s "name of the shell"   "username" This  command will set the default shell for the username supplied  as argument above in the command. We can also use "chsh" command to change the user default shell as below $sudo chsh -s /bin/bash/ username