Ubuntu Malaysia LoCo Team at Penang Matriculation ICT Day 2012

1 Comment

  • Date: 18th February 2012
  • Time: 8:00am to 5:00pm
  • Venue: KMPP – Kolej Matrikulasi Pulau Pinang (Pulau Pinang Matriculation College)
  • Activities:
    • Promoting Ubuntu to public and KMPP student during that day
  • Reports:
    • Khairul Aizat, Saufi Wahab and Tajul Azhar in-charge of a booth for than event.
    • Students come and ask about Ubuntu and many of them install with guide from three of us.
    • This event will be organized annually and Ubuntu will take part for the next event.
    • Lecturers and outside campus visitors came and ask about Ubuntu and some of them planning to have the same awareness in School or offices nearby.

    • “Ubuntu Awareness at ICT Day 2012″

      From Ubuntu Malaysia LoCo Team @ KMPP, posted by Khairul Aizat Kamarudzzaman on 2/21/2012 (27 items)

      Generated by Facebook Photo Fetcher


Building a Ubuntu Package for DNSCrypt-proxy

1 Comment

What is DNS Crypt ? You may read the preview release here . But its official release is for Mac OSX package only. They release the source at github and i try to find any PPA package for it but i get this from pinowudi blog (http://pinowudi.blogspot.com/2011/12/referring-to-x4s-issue-for-linux.html) . So i want to give a try to build the package.

I try to build the package at my PPA with the help from Mahyuddin Susanto . After finish building the package, i do the testing at my workstation:

$sudo apt-add-repository ppa:fenris/ppa

$ sudo apt-get install dnscrypt-proxy
Reading package lists… Done
Building dependency tree
Reading state information… Done
The following NEW packages will be installed:
dnscrypt-proxy
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
Need to get 168 kB of archives.
After this operation, 479 kB of additional disk space will be used.
Get:1 http://ppa.launchpad.net/fenris/ppa/ubuntu/ oneiric/main dnscrypt-proxy all 0.1-1ubuntu2 [168 kB]
Fetched 168 kB in 4s (34.7 kB/s)
Selecting previously deselected package dnscrypt-proxy.
(Reading database … 232962 files and directories currently installed.)
Unpacking dnscrypt-proxy (from …/dnscrypt-proxy_0.1-1ubuntu2_all.deb) …
Processing triggers for man-db …
Setting up dnscrypt-proxy (0.1-1ubuntu2) …

Checking if is working after installed,

$ dnscrypt-proxy –help
dnscrypt-proxy 0.11
Copyright (C) 2011 OpenDNS, Inc.

Options:

-a    –local-address=…
-d    –daemonize
-e    –edns-payload-size=…
-h    –help
-k    –provider-key=…
-l    –logfile=…
-n    –max-active-requests=…
-p    –pidfile=…
-r    –resolver-address=…
-t    –tcp-port=…
-u    –user=…
-N    –provider-name=…
-P    –local-port=…
-V    –version

Please consult the dnscrypt-proxy(8) man page for details

Then i run it with sudo privileges,

$sudo dnscrypt-proxy –daemonize

After running the proxy as daemon, i change my dns by editing my /etc/resolv.conf

# Generated by NetworkManager
nameserver 127.0.0.1

So finally i test browsing internet to the OpenDNS Welcome page , so here is the screenshot

So everyone are welcome to test from my ppa:fenris/ppa and can comment my building packaging for my improvement in building other packaging in the future …

Opening CAD Files in Ubuntu

1 Comment

Working at new company and differ environment make me explore and expose to new experience … with the latest concurrent multiple project running …. banking system application , enterprise portal and ICT consulting …

My biggest challenging and experience is working with the Mechanical & Electrical (M&E) engineers, C&S , Architect is they are working on the same format and file that is CAD . So why i say it biggest challenging is i doesn’t know any software that can work in Ubuntu (maybe lack of OSS application knowledge) but i’ve try to find before .. then i have no choice need to work with the proprietary software such as AutoCAD. Luckily today while i browsing my facebook … i saw an advertising banner about FREE CAD software. I then straight away go to the website and reading the information and its saw support multi platform include linux.

http://www.3ds.com/products/draftsight/free-cad-software/

I straight away download and excited to try in Ubuntu since they already package the installer. After download and try to install , i discover its need some dependencies ,

sudo apt-get install libdirectfb-extra sendmail

sudo dpkg -i DraftSight.deb

Its required an activation so u need to register with your email address and activated it with the given link in your email. Finally ………………….

 

Apport-collect

Comments Off

apport-collect will then go find all the open tasks for that bug (just in case it is assigned to more than one package), run all of the apport-hooks for those packages, and attach that information to the bug report. It does all of this with out any other interaction with the reporter. To see which packages already have apport hooks available for them, see the Apport wiki page. Now, we all need to start adding more apport hooks so this is even more useful.

e.g:

fenris@thinkbuntu:~/Documents$ apport-collect -p ubuntuone-client 375249
Logging into Launchpad…
The authorization page (https://edge.launchpad.net/+authorize-token?oauth_token=mSqpzgwT2G92DdNCSV7J) should be opening in your browser. After you have authorized this program to access Launchpad on your behalf you should come back here and press <Enter> to finish the authentication process.

Downloading bug…
Bug title: Segmentation fault
Collecting apport information for source package ubuntuone-client…
Uploading additional information to Launchpad bug…
short text data…
attachment: .home.fenris..cache.ubuntuone.log.oauth.login.log.txt…
attachment: Dependencies.txt…

Now u all attachment already been uploaded to :  https://bugs.edge.launchpad.net/ubuntuone-client/+bug/375249

Internet Sharing via Bluetooth PAN with WM 6.1 Pro (Omnia) & Ubuntu

27 Comments

Thanks God at last …. i finally can get connected to internet through my OMNIA … Maybe its a starting for Me to improve n fullfill my dream/goals for this 2009 year ..

1) U do need all the neccessary packages :

sudo apt-get install bluetooth bluez bluez-compat bluez-utils gnome-bluetooth

2) Turn on the Bluetooth of Pocket PC and find the Pocket PC from the Ubuntu Laptop by issuing : (make sure u already turn on ya bluetooth and make it visible)

hcitool scan

Then, you will see the following (the address is different from yours) :

Scanning …
00:0E:07:37:7C:BD YourMobileDeviceName

Edit your /etc/default/bluetooth :

# Defaults for bluez

# start bluetooth on boot?
# compatibility note: If this variable is not found bluetooth will
# start

BLUETOOTH_ENABLED=1

# This setting will switch HID devices (e.g mouse/keyboad) to HCI mode, that is
# you will have bluetooth functionality from your dongle instead of only HID.
# Note that not every bluetooth dongle is capable of switching back to HID
# mode, see http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=355497

HID2HCI_ENABLED=1
HID2HCI_UNDO=1

#PAND_ENABLED=0
PAND_ENABLED=1

#PAND_OPTIONS=”"
PAND_OPTIONS=”–listen –role=NAP –devup /etc/bluetooth/pan/dev-up”
then save it.

3) Pairing your MobileDevice and your laptop@PC

4) Append the following lines to “/etc/network/interfaces� :

sudo vim /etc/network/interfaces

add below to the file,

auto bnep0

iface bnep0 inet dhcp

then save it.

Write this script where ever u want: example , omnia.sh

#!/bin/bash

sudo modprobe bnep
sudo pand –listen -c 00:21:D2:64:DB:FE –role=NAP -n –persist
sudo ifconfig bnep0
sudo ifup bnep0

* Change the mac address according to your mac address

chmod +x omnia.sh

Then execute it, ./omnia.sh

Pocket PC ( Windows Mobile )

1) Open the Internet Sharing Connection (ICS)

2) PC Connection: Bluetooth PAN

3) Network Connection: DiGi Internet (change it with your ISP 3G provider)

When u see,

Status : Connected

Its mean u already get connected to internet via ICS … try ping anywhere to test your connection … Gud Luck !!!

Shut down of HP learning websites

No Comments

On 20 October, HP will shut down the existing learning systems in preparation for the launch of “The Learning Center�, a new system that will make it easier for you to access training and certification information. This transition will impact you as an HP Certified Professional or as a user accessing information through the HP Certified Professional website (www.hp.com/go/certification/ap) and the Asia Pacific Partner Academy (www.hp.com/go/appa) .

Blackout Period: 20 Oct to 7 Nov’08

During the blackout period, you shall not be able to access your certification history and/ or register for any learning tracks online.

  • If you have a valid HP Student ID you will still be able to register for courses, take exams at Prometric and launch web based training content. Please note, transaction records profile data, and awarding of certifications, will NOT be updated in the new learning management system, until the new Learning Management System scheduled to go LIVE on 7th November 2008.
  • Registration for training process will be done manually. You will find details on how to register for a class in our standard electronic direct mailer invitations. You will also be able to register for a class via e-mail, fax or telephone.

Meanwhile, please continue to engage in Asia Pacific Partner Learning activities, and know that your accomplishments will be recorded and visible when ”The Learning Center” launches.

Please note:
We are NOT able to accept any new students during this transition period.  Please make sure you can provide your local Authorized Training Center (ATC) with your HP Student ID to ensure your training attendance is captured.  This manual process however, does not allow us to accept “walk-in students�, so please ensure you signup with your local ATC at least 1 day prior to the scheduled training.

Access training and certification information will come easier with improved version of new website.  Should you encounter any problems with your sign-on, please email to premium.support@hp.com.

On behalf of HP Asia Pacific Partner Learning, we thank you for your support as we continue to improve our partner learning services.

Best regards

Director
Asia Pacific Partner Learning, APJ

Sophos Anti-Virus for UNIX 7.0 Beta Available – Why bother?

1 Comment

Sophos has recently launched the beta of Sophos Anti-Virus 7.0 for UNIX. Initially this will be for Solaris 9 & 10 Sparc platform and allows users to centrally control policies, consolidate alerts and view reports etc.

Anyone wishing to join the beta program should contact betaprogram@sophos.com as soon as possible.

But why bother, I hear you ask. Doesn’t malware only affect Windows? So why do I need to add anti-virus to a platform that isn’t affected?

We may note of course that the first internet worm infected UNIX machines, and the first rootkits were trojanised versions of UNIX system utilities. You may say it is ancient history.

More recently our own analysis shows that nearly half the compromised web servers hosting malware are running Apache, and 70% of the infections caught on our linux honeypot are a six year old virus called Rst-B. And the most commonly infected files are trojanised versions of Unix system utilities downloaded by hackers after a successful break-in.

Another good reason is the story of Typhoid Mary . The story goes that a health inspector was investigating an outbreak of Typhoid. His initial report was as follows:

“I had my first talk with Mary in the kitchen of this house. . . . I was as diplomatic as possible, but I had to say I suspected her of making people sick and that I wanted specimens of her urine, feces and blood. It did not take Mary long to react to this suggestion. She seized a carving fork and advanced in my direction. I passed rapidly down the long narrow hall, through the tall iron gate, . . . and so to the sidewalk. I felt rather lucky to escape.�

Using other platforms as files servers, or hosting business critical applications makes a great deal of sense, but although modern malware does target the Windows operating system, protecting any UNIX servers, helps prevent reinfection of those desktops from your very own Typhoid Mary.

You may of course disagree with me and you’re confident that your UNIX servers are clean, in which case why not join the beta program and prove me wrong.

PS. The photo above is of Chris Northwood. Chris is a placement student who is working as a developer on our Sophos Anti-Virus for Linux/UNIX R&D team. Apparently the rest of the team chose Chris for the photoshoot as they thought he looked the smartest of all of them. :)

Mark Harris – Director of SophosLabs

Foxmarks for Firefox 3

4 Comments

Here are some screenshot of foxmark:

At last … the addon that i’ve wait already support firefox 3 but its still a beta version.Words from beta.foxmark.com :

Thank you for beta testing Foxmarks for Firefox 3!

Click on the button below to get started. Some important things to remember (see below for details):

  1. Backup your bookmarks!
  2. Install this beta client on Firefox 2 as well.
  3. Read about the latest known issues on the Beta News page.

Beta News | Report Bugs

The current beta client version is: 2.0.44.17

Install this Beta Client on Firefox 2 as Well!

You will need to install the beta client on all your synchronizing browsers, especially Firefox 2. Because Firefox 3 introduces new bookmark data (such as tags and smart bookmarks), the non-beta Foxmarks client may cause synchronization errors, data loss, or both.

Back Up Your Bookmarks

Warning: Both Firefox 3 and the Foxmarks client above are beta products, so there is no guarantee that your bookmarks will not be corrupted or lost. Please backup your bookmarks before you begin, and regularly during the beta program.

To backup bookmarks in Firefox 3:

  1. From the menu bar select: Bookmarks –> Show All Bookmarks
  2. A window containing your bookmarks will appear.
    Select: Import and Backup –> Backup
  3. Save the bookmarks file to a safe location.

Exiting the Beta Program

Though we would be sad to see you go, we do understand that not everyone will want to remain in the beta program. Thank you for your help in improving our software.

[tags]Firefox 3,Foxmark[/tags]

E-Maj Ubuntu for Malaysian Released!

4 Comments

Repost from : http://melayubuntu.blogspot.com/2008/05/e-maj-ubuntu-for-malaysian-edisi.html

Dengan rasminya saya disini menerbitkan sebuah majalah elektronik yang saya namakan sebagai “E-Maj Ubuntu for Malaysian” secara PERCUMA untuk ditatap oleh pembaca blog melayubuntu sekelian. Anda bebas review diblog masing-masing, copy dan mengedarkannya, upload ke mana-mana website torrent dan sebagainya diatas semangat ingin mempromosikan ubuntu kepada umum.

Saya telah berfikir akan cara bagaimana untuk monitor akan jumlah download yang akan diterima oleh Edisi Pertama ini namun buntu. Jika sesiapa mempunyai idea, sila bagi respon. Sebarang sumbangan dalam bentuk idea, kritikan konstruktif, design konsep, mahupun wang ringgit adalah dialu-alukan diatas matlamat untuk menghasilkan sesuatu yang lebih baik dari edisi pertama ini.

Edisi pertama ini dihasilkan dengan pelbagai rintangan termasuk keputusan internet, kekurangan sumber, kekurangan pengalaman dan bakat, kesuntukan masa dan sebagainya. Harapan saya, terimalah ia sebagaimana ia telah ada =). Thanks for your support!

Tahniah diucapkan kepada Syahid Zul diatas hasil usahanye … pihak Komuniti Ubuntu Malaysia amat berbangga mempunyai ahli seperti beliau … keep it up bro!!!

Hardening Your Blog (WordPress)

1 Comment

There is a few ways to hardening your wordpress … but for me .. i used the WP plugins call wp-security-scan.2.2.58.1.zip & askapache-password-protect.3.6.3.zip

Here are some screenshot after i’ve done the hardening ..

Older Entries

Get Adobe Flash playerPlugin by wpburn.com wordpress themes
This blog is protected by Dave\\\\\\\'s Spam Karma 2: 64635 Spams eaten and counting...