Feb
22
2010
0

Acer Aspire 3690 Broadcom Wireless 43xx Ubuntu 9.10 Karmic

Issue : After installing Ubuntu 9.10 wireless and wired networking are either working sporadicly or not at all.  The most vanilla solution you will find.

Target : Acer Aspire 3690-2159

OS : ubuntu-9.10-desktop-i386

Hardware : Broadcom 4318 Wireless Adapter

Ensure your wireless switch is turned on in the front before reading step 1.

1.  Install Ubuntu 9.10

2.  Plug in active internet connection the Wired ethernet

3.  Run update-manager

4.  Restart after Kernel update

5.  Now with internet still plugged in, goto System>Administration>Hardware Drivers

6.  Select the Broadcom B43 wireless drive and click activate.

7.  Type in your administrator password

8.  Restart

et Voila.

Written by admin in: France, Interest, Linux, Sample Work |
Nov
30
2009
0

Reset “lost” Administrator Password Mac OS X

Lost your administrator password?  Working with a client who has lost their administrator password and need to install applications and updates? Here is a very simple workaround to resetting the password on any account in OS X.

So what do we do?

Basically start up your Mac in single user mode, deleting the local profile cache for the creation of a new user.  Upon restart, you will be prompted to setup a new administrator account.   This process of creating this account is the same as after a fresh install.  Once you have logged in under the new account, open System Preferences>Accounts and change the password of your original account.  No data is lost, and nothing is deleted.  Logout/Login with your new password and then delete the temporary admin account.

Presto – Password recovered.

1.  Reboot in Single User Mode – hold Apple Key(command)-S after you hear the chime

2.  Run the following:

1
2
3
mount -uw /
rm /var/db/.AppleSetupDone
shutdown -h now

**Note**
In terms of security, this is why restriction of physical access to a machine is critical.  Passwords are not safe, and are not to be conceived as “safe”.  Strong passwords are irrelevant if you do not limit physical access to machines.  Play safe.

Written by admin in: Linux, Sample Work |
Nov
24
2009
0

Grub2 – A beginners guide

Take a look at this post over at Ubuntu forums for a very comprehensive, yet easy to understand guide to Grub2.  Noteworthy mentions are as follows:

“At first boot, there will not be much difference in what the user sees on the boot menu. The one exception is a clean install of Ubuntu 9.10 with no other installed operating system. In this case, GRUB 2 will boot directly to the login prompt or Desktop without displaying a menu. Other major differences:

  • No ”/boot/grub/menu.lst”. It has been replaced by ”/boot/grub/grub.cfg”.
  • Hold down SHIFT to display the hidden menu during boot (formerly ESC is GRUB legacy).
  • There is no “find /boot/grub/stage1″ at the grub prompt. Stage 1.5 has also been eliminated.
  • The main menu file, ”/boot/grub/grub.cfg” is not meant to be edited, even by ‘root’.
  • ”grub.cfg” is overwritten anytime there is a update, a kernel is added/removed or the user runs `update-grub` *
  • The user can use a custom file, ”/etc/grub.d/40_custom”, in which the user can place his own entries. This file will ”not” be overwritten.
  • The primary configuration file for changing menu display settings is ”/etc/default/grub”.
  • There are multiple files for configuring the the menu – ”/etc/default/grub” mentioned above, and all the files in ”/etc/grub.d/” folder.
  • Other operating systems, such as Windows, should automatically be recognized and added to the menu.
  • No changes made in the configuration files will take effect until the `update-grub` command is also run.”

Big thanks to our author : http://ubuntuforums.org/member.php?u=223945

Original Post : http://ubuntuforums.org/showthread.php?t=1195275

Written by admin in: Linux, Sample Work |