Showing posts with label solution. Show all posts
Showing posts with label solution. Show all posts

Tuesday 24 March 2015

Error while trying to update Ubuntu 14.04 LTS

Hi all this morning, as usual I was kind updating my Ubuntu and part of my normal system maintenance check up and find this error, while trying to update my system.


It seems strange to me, after a quick google - I found a work around on this website on AskUbuntu forum.. http://askubuntu.com/questions/599112/google-chrome-ppa-upgrade-invalid-signature.

"
Open a terminal and enter the following:
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
 
That will import Google's updated GPG Key.

You should be able to update the system without any errors.
Source: Google Linux Repositories
"

Thursday 16 May 2013

Update script working with Backtrack 5

I could not find an update script working with Backtrack 5 so I decided to make a quick one.

Updated version: 2.0

Changelog Version 2.0
Code:
* Reviewed all tools.
* Compatible with Backtrack 5 R2/R3.
* Removed the menu.
Code:
git clone git://github.com/sickn3ss/backtrack_update.git
cd backtrack_update
chmod a+x backtrack5_update.py
./backtrack5_update.py
Screenshot:



If you know more tools I could add to the script in order to update them please feel free to post them here.
Also if you find any bugs or have any feedback feel free to contact me in this thread. I will update the thread with each update to the script.

NOTE: Please make sure you understand what the script does before running it.

Enjoy!

Thursday 4 April 2013

HOW TO Solve issue Nvidia & X.org Server Problems on Linux or BackTrack5


  1. I spent a week trying to resolve the error generated by X.org Server and Nvidia drivers, and I think I've finally solved.
    This is the solution for my Nvidia GT540M & Intel i7-2670QM (ASUS X53SV-SX598V)
    1. Download NVIDIA driver from here: http://www.nvidia.com/object/unix.html.
    I use Linux x86_64/AMD64/EM64T (NVIDIA-Linux-x86_64-285.05.09.run) for my system at 64bit
    2. Install system updates
    Code:
    sudo apt-get update && sudo apt-get upgrade
    3. Install linux-header to the upgraded kernel
    Code:
    sudo apt-get install linux-headers-$(uname -r)
    4. If dkms and build essential haven't been installed
    Code:
    sudo apt-get install dkms build-essential
    5. Open blacklist.conf file to add some lines (I use vi command)
    Code:
    vi /etc/modprobe.d/blacklist.conf
    6. Press i and after others “blacklist” list add this list
    Code:
    blacklist vga16fb
    blacklist nouveau
    blacklist rivafb
    blacklist nvidiafb
    blacklist rivatv
    7. After that, press ESC and type :wq (this write the file)
    8. Make grub.cfg writable
    Code:
    chmod +w /boot/grub/grub.cfg
    9. Open grub.cfg file
    Code:
    vi /boot/grub/grub.cfg
    10. Find text splash text inside the document and add nouveau.modeset=0 text like this
    Code:
    text splash nouveau.modeset=0 vga=791
    11. After that, press ESC and type :wq (this write the file)
    12. Disable writable mode to grub.cfg file
    Code:
    chmod -w /boot/grub/grub.cfg
    13. Update grub.cfg file
    Code:
    update-grub‎
    14. Reboot
    15. Login and don’t write startx
    16. Remove all previous Nvidia drivers
    Code:
    sudo apt-get --purge remove nvidia-*
    17. Remove default drivers
    Code:
    sudo apt-get --purge remove xserver-xorg-video-nouveau
    18. Chmod the nvidia driver file
    Code:
    chmod a+x NVIDIA-Linux-x86_64-285.05.09.run
    19. Run the nvidia driver*
    Code:
    sh ./NVIDIA-Linux-x86_64-285.05.09.run
    *If you use a 64bit system don’t install the OpenGL 32bit
    20. Reboot

    If you have a problem like this:
    Code:
     
    X.Org X Server 1.7.6
    Release Date: 2010-03-17
    X Protocol Version 11, Revision 0
    Build Operating System: Linux 2.6.24-28-server x86_64 Ubuntu
    [...]
    Fatal server error:
    no screens found

    It means that the automatic writing of xorg.conf (nvidia-xconfig command) during installation is not successful., but the driver has been installed correctly.
    To solve this problem just delete the xorg.conf file:

    Code:
    rm /etc/X11/xorg.conf
    When you restart the PC the file xorg.conf file will be created automatically.
    Reebot and type
    Code:
    startx
    I hope it helps

Friday 29 March 2013

XAMPP: Another web server daemon with SSL is already running

This is a peculiar error you will get if you run XAMPP in LINUX.



Assumption: XAMPP is unzipped @ /opt/ folder.

If you get the error "XAMPP: Another web server daemon with SSL is already running" when you run "./lampp start". Simply follow the steps below to get rid of this error:

1. Open the file /opt/lampp/etc/httpd.conf
2. Search the "Listen 80" and change it to some other port (e.g. Listen 2145)  (Line No. 40)
3. Open the file /opt/lampp/etc/extra/httpd-ssl.conf
4. Search the "Listen 443" and change it to some other port (e.g. Listen 16443) (Line No. 39)
5. Open the file "/opt/lampp/lampp"
6. Search for the port "testport 80" and replace it to "testport 2145". Also change the "testport 443" to "testport 16443". (Happens to be the Line No. 197, 214)
7. Now go and run "/opt/lampp/lampp start". (It should work now).




Hope this Helps :-)

Thursday 13 December 2012

Using Virtual Ethernet Adapters in Promiscuous Mode on a Linux Host


VMware Workstation does not allow the virtual Ethernet adapter to go into promiscuous mode unless the user running VMware Workstation has permission to make that setting. This follows the standard Linux practice that only root can put a network interface into promiscuous mode.

When you install and configure VMware Workstation, you must run the installation as root. VMware Workstation creates the VMnet devices with root ownership and root group ownership, which means that only root has read and write permissions to the devices.

To set the virtual machine's Ethernet adapter to promiscuous mode, you must launch VMware Workstation as root because you must have read and write access to the VMnet device. For example, if you are using bridged networking, you must have access to /dev/vmnet0.

To grant selected other users read and write access to the VMnet device, you can create a new group, add the appropriate users to the group and grant that group read and write access to the appropriate device. You must make these changes on the host operating system as root (su -). For example, you can enter the following commands:

chgrp <newgroup> /dev/vmnet0

chmod g+rw /dev/vmnet0

<newgroup> is the group that should have the ability to set vmnet0 to promiscuous mode.
The command to run vmware workstations ads root is simple: user@user#:~$ sudo vmware start

If you want all users to be able to set the virtual Ethernet adapter (/dev/vmnet0 in our example) to promiscuous mode, run the following command on the host operating system as root:

chmod a+rw /dev/vmnet0


This is another posting showing "how to do computing" for everyday computer usages... For a general public

Friday 12 October 2012

md5sum.exe introduction


After you download all the Shorten (.shn) files for a particular disc or show, you want to verify that the files are not corrupted or otherwise unusable before you burn them to disc or host them on your file server. We do this by checking the downloaded Shorten (.shn) files against an .md5 file. An .md5 is a simple text file that contains a "fingerprint" of each Shorten file.


When you perform an md5 check, you are comparing the fingerprint from the files you downloaded to the fingerprint of the files on the server you downloaded from. If the md5's (fingerprints) match, you have an uncorrupted Shorten file.



 md5sum.exe - 48KB         88170 Downloads since 9/29/00



  • Windows 95/98/Me: Download md5sum.exe to c:\windows\command

  • Windows NT/2000: Download md5sum.exe to your c:\winnt\system32
  •  

    Open an MS-DOS window and go to the directory of the show you want to check. When you are in that directory, type:
    md5sum -c [filename].md5
     
    You must insert the name of the .md5 file [without the brackets]. Below is an example of a successful md5sum check:
     
     
    On the other hand, if a track does not pass the md5check, you will see the following:
    If any Shorten files do not pass the .md5 check, you should delete the offending file(s), and try re-downloading. Then run the .md5 check again. The file(s) should now pass the .md5 check.

    If the same files fail an .md5 check more than twice, you should contact the FTP Siteop you downloaded the files from and let them know what tracks are giving you a problem. They may be hosting a corrupted track without knowing it.

    Open an MS-DOS window and go to the directory of the show you want to create an .md5 file for. When you are in that directory, type:

    md5sum *.shn > [filename].md5
     
    NOTE: You must insert the name of the .md5 file [without the brackets]. Example:
     
    md5sum *.shn > ph94-06-26d1.md5

    An .md5 file will be created and placed in that directory. Please remember to adhere the etree.org naming scheme when naming .md5 files!

    Please remember to always .md5 check your Shorten files before burning!
      

    Special thanks to bruce@gridpoint.com and the PCP community for compiling this special version of md5sum. Documentation and graphics by Mike Wren.


     

    Thursday 30 August 2012

    Learn how to build a desktop computer or PC

    Learn how to build your own computer or PC.  Allows you to customize to meet your exact needs!  Sorry the quality is a little bit crappy.

    Parts...
    Cooler Master Elite 310 Case
    Asus P5Q SE Plus motherboard
    Intel Quad core Q8200 2.33 GHZ 4 MB cache 1333 MHZ FSB
    Kingston PC8500 2 GB RAM 1066 MHZ
    XFX GeForce 9800 GT 512MB GDDR3
    Samsung 500 GB SATA HD 7200 RPM 16 MB buffer
    Antec 500 W power supply
    Samsung 22x SATA dual layer DVD burner
    2x Antec 120mm ball bearing multiple speed fans

    Music by:  incompetech.com
    Song: Deliberate Thought
    For use under Creative Commons license 3.0


    Thursday 19 July 2012

    How to install Wireless drivers on ubuntu 10.04

    About a day ago my boss asked me to get a Linus distro ubuntu 10.04 to work, it happens that thid version is not coming with network drivers activated...

    Here is how I worked out to get my WiFI drivers to work.. Later I post the solution to the Ethernet.  Let me remind you that sometimes, the setup can get mess up by some updates.

    But sooner u know how to get it done, and do it once, then it becomes easier. The first thing you need to do, in order to update or install your wifi drivers is to find out what is your kernel version ....

    You can do it by running this simple command in terminal ....

    uname -r

    ............

    Or something like this ....

    A second way is to look at the /proc/version file. This can be easily accomplished by using the cat command (which is commonly used to read and concatenate files), i.e.,
    cat /proc/version
    A third way is to use the rpm (i.e., Red Hat package manager) command with its -q (i.e., query) option and use the word kernel as an argument (i.e., input data) as follows:
    rpm -q kernel

     ....


    The download the drives from here a trusted source, for me it happens to be this one .. Realtek Drivers .... {The drivers are to my kernel type yours might be different }..

    Download them into your computer, and then that what you have to do..

    1 - unzip it into your /tmp folder .. with this command ..

     sudo tar -zxvf name_of_the_package.tar.gz


    Then ..

    root@hostdevelop:/# ls
    bin    etc             lib         mnt   sbin     tmp      vmlinuz.old
    boot   home            lib64       opt   selinux  usr
    cdrom  initrd.img      lost+found  proc  srv      var
    dev    initrd.img.old  media       root  sys      vmlinuz
    root@hostdevelop:/# cd ./tmp
    root@hostdevelop:/tmp# ls
    keyring-r6S9ei      pulse-PKdhtXMmr18n
    orbit-gdm           rtl8192ce_linux_2.6.0006.0321.2011.tar.gz
    orbit-hostdevelop   ssh-NlCyNr1469
    pulse-m5lvqUFNxjXA  virtual-hostdevelop.SxNVar
    root@hostdevelop:/tmp# tar -zxvf rtl8192ce_linux_2.6.0006.0321.2011.tar.gz
    rtl8192ce_linux_2.6.0006.0321.2011/
    rtl8192ce_linux_2.6.0006.0321.2011/firmware/
    rtl8192ce_linux_2.6.0006.0321.2011/firmware/RTL8192CE/
    rtl8192ce_linux_2.6.0006.0321.2011/firmware/RTL8192CE/Realtek-Firmware-License.txt
    rtl8192ce_linux_2.6.0006.0321.2011/firmware/RTL8192CE/rtl8192cfwT.bin
    rtl8192ce_linux_2.6.0006.0321.2011/firmware/RTL8192CE/rtl8192cfw_test.bin
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/Makefile
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/Makefile
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_com.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_com.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_def.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dev.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dev.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dm.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dm.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmbt.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmbt.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmout.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmout.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_Efuse.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_Efuse.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_firmware.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_firmware.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_hw.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_hwimg.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_hwimg.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_inc.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_led.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_led.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_phy.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_phy.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_PhyParam.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_PhyParam.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_phyreg.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rtl6052.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rtl6052.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rx.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rx.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_tx.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_tx.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_cam.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_cam.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_core.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_core.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_debug.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_debug.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_dm.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_dm.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_eeprom.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_eeprom.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_ethtool.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_mesh.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_mesh.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pci.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pci.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_platformdef.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pm.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pm.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_ps.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_ps.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_regd.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_regd.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_rfkill.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_rfkill.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_softap.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_softap.h
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_wx.c
    rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_wx.h
    rtl8192ce_linux_2.6.0006.0321.2011/Makefile
    rtl8192ce_linux_2.6.0006.0321.2011/readme.txt
    rtl8192ce_linux_2.6.0006.0321.2011/realtek/
    rtl8192ce_linux_2.6.0006.0321.2011/realtek/RadioPower.sh
    rtl8192ce_linux_2.6.0006.0321.2011/realtek/wireless-rtl-ac-dc-power.sh
    rtl8192ce_linux_2.6.0006.0321.2011/release_note
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/aes.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/api.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/arc4.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/autoload.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/cipher.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/compress.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/crypto_compat.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/digest.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/dot11d.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/dot11d.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/internal.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/kmap_types.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/license
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/Makefile
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/michael_mic.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/proc.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_BA.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_BAProc.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_HT.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_HTProc.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_Qos.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_TS.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl819x_TSProc.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_crypt.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_crypt.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_crypt_ccmp.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_crypt_tkip.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_crypt_wep.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_endianfree.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_module.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_rx.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_softmac.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_softmac_wx.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_tx.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtllib_wx.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/rtl_crypto.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/scatterwalk.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/scatterwalk.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/wapi.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/wapi.h
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/wapi_interface.c
    rtl8192ce_linux_2.6.0006.0321.2011/rtllib/wapi_interface.h
    rtl8192ce_linux_2.6.0006.0321.2011/runwpa
    rtl8192ce_linux_2.6.0006.0321.2011/wpa1.conf
    rtl8192ce_linux_2.6.0006.0321.2011/wpa_supplicant-0.6.9.tar.gz
    root@hostdevelop:/tmp# ls
    keyring-r6S9ei      rtl8192ce_linux_2.6.0006.0321.2011
    orbit-gdm           rtl8192ce_linux_2.6.0006.0321.2011.tar.gz
    orbit-hostdevelop   ssh-NlCyNr1469
    pulse-m5lvqUFNxjXA  virtual-hostdevelop.SxNVar
    pulse-PKdhtXMmr18n
    root@hostdevelop:/tmp# cd ./rtl8192ce_linux_2.6.0006.0321.2011
    root@hostdevelop:/tmp/rtl8192ce_linux_2.6.0006.0321.2011# ls
    firmware  Makefile    realtek       rtllib  wpa1.conf
    HAL       readme.txt  release_note  runwpa  wpa_supplicant-0.6.9.tar.gz
    root@hostdevelop:/tmp/rtl8192ce_linux_2.6.0006.0321.2011# make
    make[1]: Entering directory `/usr/src/linux-headers-2.6.32-41-generic'
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_core.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_eeprom.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_wx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_cam.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pm.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_pci.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_ps.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_debug.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_ethtool.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl_regd.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dev.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_tx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_Efuse.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_phy.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_firmware.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmbt.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dmout.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_dm.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_rtl6052.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_hwimg.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_led.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/rtl8192c/r8192C_com.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_rx.o
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_rx.c: In function ‘rtllib_FlushRxTsPendingPkts’:
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_rx.c:1297: warning: the frame size of 1040 bytes is larger than 1024 bytes
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_rx.c: In function ‘RxReorderIndicatePacket’:
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_rx.c:1488: warning: the frame size of 1072 bytes is larger than 1024 bytes
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_softmac.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_tx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_wx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_module.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_softmac_wx.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtl819x_HTProc.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtl819x_TSProc.o
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtl819x_TSProc.c: In function ‘RxPktPendingTimeout’:
    /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtl819x_TSProc.c:99: warning: the frame size of 1056 bytes is larger than 1024 bytes
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtl819x_BAProc.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/dot11d.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_crypt.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_crypt_tkip.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_crypt_ccmp.o
      CC [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/../../rtllib/rtllib_crypt_wep.o
      LD [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/r8192ce_pci.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/r8192ce_pci.mod.o
      LD [M]  /tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192/r8192ce_pci.ko
    make[1]: Leaving directory `/usr/src/linux-headers-2.6.32-41-generic'
    root@hostdevelop:/tmp/rtl8192ce_linux_2.6.0006.0321.2011# make install
    make[1]: Entering directory `/usr/src/linux-headers-2.6.32-41-generic'
      Building modules, stage 2.
      MODPOST 1 modules
    make[1]: Leaving directory `/usr/src/linux-headers-2.6.32-41-generic'
    make[1]: Entering directory `/tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192'
    make -C /lib/modules/2.6.32-41-generic/build M=/tmp/rtl8192ce_linux_2.6.0006.0321.2011 CC=gcc modules
    make[2]: Entering directory `/usr/src/linux-headers-2.6.32-41-generic'
      Building modules, stage 2.
      MODPOST 0 modules
    make[2]: Leaving directory `/usr/src/linux-headers-2.6.32-41-generic'
    find /lib/modules/2.6.32-41-generic -name "r8192ce_*.ko" -exec ls -l {} \;
    find /lib/modules/2.6.32-41-generic -name "r8192ce_*.ko" -exec rm {} \;
    install -p -m 644 r8192ce_pci.ko /lib/modules/2.6.32-41-generic/kernel/drivers/net/wireless/
    depmod -a
    make[1]: Leaving directory `/tmp/rtl8192ce_linux_2.6.0006.0321.2011/HAL/rtl8192'
    root@hostdevelop:/tmp/rtl8192ce_linux_2.6.0006.0321.2011# 






    Then .. .. Restart your systems and your wireless should be working fine !!
    Hope that this guide help you ..


    Any feedback, comments and contribution is welcome ...


    Wednesday 18 April 2012

    I got stuck to on Oracle DataBase Developer apps

    Dear Readers, 


    Over a period of one entire, month I've being put off by Linux ubuntu 11.10, to install the sqldeveloper package. Every single time I've tried to do it, I got errors ... 


    Today finally I managed to find the solution.. Someone had the same problem as me and posted a solution in one forum, so I followed their instructions and got mine working.. Thank you to this guy.. 


    Really saved the day.. 


    So, I decide to honour him and post his solution here. 


    "Hi guys, just got a quick question: 

    I need to install Oracle's SQL Developer since I need to use the program for a database unit at Uni. Anyway, if you've tried to use it before you'd realise that there is only a .rpm installer available for it (no .deb). So I tried to convert it to .deb using alien.  When I "sudo alien --scripts" the .rpm I get: error: incorrect format: unknown tag mkdir: cannot create directory `sqldeveloper-2.1.1.64.45': 


    File exists unable to mkdir sqldeveloper-2.1.1.64.45: at /usr/share/perl5/Alien/Package.pm line 257.  
    Basically, I'm asking, does anyone know what I'm doing wrong here? I've never used alien before since I've never had a need to convert a .rpm before. I also tried installing and running Java JDK and SQL Developer under Wine, but was unsuccessful with that as well :( Anyway, thanks for taking your time to read and (hopefully) help with this ;) 


    Oh and I'm using Ubuntu 10.04 32bit, if that helps? 


    ; -->poltak July 22nd, 2010, 07:49 AM Ah, crud <-- [That's the name of the guy that created the post]
    Managed to solve this problem with the help of another more-advanced-than-me linux user. 


    Anyway, I'll write up how we got it sorted without needing to convert an rpm package to deb just so if anyone else has this same problem in the future and googles this or something... 
    First make sure you have Java JDK installed. I used openjdk (open-source alternative to the official Sun Java jdk thingie). Download the "Oracle SQL Developer for other platforms" from the Oracle site (http://www.oracle.com/technology/software/products/sql/index.html)and then extract it into its own folder. 


    Then in terminal, cd to the extracted directory and: sudo sh sqldeveloper.sh 
    It'll ask you to type the pathname of your J2SE installation


    Mine turned out to be "/usr/lib/jvm/java-6-openjdk". Then press enter and you should be right and it will boot up and work the exact same as it does under Windows or OS X. 


     Hopefully this helps another linux newbie out one day down the track :)"


    This is the end result on my computer ..Finally working 
     :-)

    Secure Your Azure DevOps Pipeline: GitHub Advanced Security to the Rescue

      Stop Shipping Your Passwords to Production: How GitHub Advanced Security for Azure DevOps Saves the Day (and Your Reputation) Let's fa...