Wednesday, 24 April 2013

Oracle-ARCHIVELOG

command on command Prompt:
...............................
sqlplus /nolog
connect / as sysdba

or sqlplus / as sysdba


Backing Up and Recovering:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>



***Enabling ARCHIVELOG Mode for Media Failure Protection:***
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>sqlplus / as sysdba
>select log_mode from v$database;
>SHUTDOWN IMMEDIATE
>STARTUP MOUNT
>ALTER DATABASE ARCHIVELOG;
>ALTER DATABASE OPEN;
>exit;



***Flash Recovery Area***
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Two parameters:
* DB_RECOVERY_FILE_DEST and
* DB_RECOVERY_FILE_DEST_SIZE

Flash Recovery Area Default Location:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

Linux:    /usr/lib/oracle/xe/app/oracle/flash_recovery_area/
Windows:  c:\oraclexe\app\oracle\flash_recovery_area/

To change the flash recovery area location:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

>sqlplus /as sysdba
>ALTER SYSTEM SET DB_RECOVERY_FILE_DEST = 'new_path';
>@?/sqlplus/admin/movelogs
Example:(for windows)
>ALTER SYSTEM SET DB_RECOVERY_FILE_DEST = 'E:\FRA';
>@?/sqlplus/admin/movelogs

 "C:\oraclexe\app\oracle\product\11.2.0\server/sqlplus/admin/movelogs.sql"



To Changing the Flash Recovery Area Size:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
>ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE = new_size;
>exit;
Example:
>ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE = 20G;
>exit;



Monitoring Location & Space in the Flash Recovery Area:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>


SELECT
NAME,
TO_CHAR(SPACE_LIMIT, '999,999,999,999') AS SPACE_LIMIT,
TO_CHAR(SPACE_LIMIT - SPACE_USED + SPACE_RECLAIMABLE, '999,999,999,999')
AS SPACE_AVAILABLE,
ROUND((SPACE_USED - SPACE_RECLAIMABLE)/SPACE_LIMIT * 100, 1)
AS PERCENT_FULL
FROM V$RECOVERY_FILE_DEST;


Restoring and Recovering the Database:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

> On Windows: Click Start, point to Programs (or All Programs), point to
Oracle Database 11g Express Edition, and then select Restore Database.

> On Linux with Gnome: In the Applications menu, point to Oracle Database
11g Express Edition, and then select Restore Database.

> On Linux with KDE: Click the icon for the K Menu, point to Oracle Database
11g Express Edition, and then select Restore Database.






Saturday, 20 April 2013

Setting Enviroment Variables on Linux platform for Oracle

Setting Enviroment Variables on Linux platform

For Bourne,Korn or Bash shell

>source /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh

For C shell:
>source /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.csh

 not path for 11g2

>source /usr/lib/oracle/xe/app/oracle/product/11.2.0/server/bin/oracle_env.sh



For Remote login

SQL>EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);

[sajib@fws ~]$ lsnrctl status

LSNRCTL for Linux: Version 11.2.0.2.0 - Production on 05-OCT-2013 22:33:15

Copyright (c) 1991, 2011, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.2.0 - Production
Start Date                05-OCT-2013 22:01:03
Uptime                    0 days 0 hr. 32 min. 12 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Default Service           XE
Listener Parameter File   /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/fws/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=::1)(PORT=1521)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
The command completed successfully



[sajib@fws ~]$ sqlplus / as sysdba

SQL*Plus: Release 11.2.0.2.0 Production on Sat Oct 5 22:34:37 2013

Copyright (c) 1982, 2011, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production

SQL> select status from v$instance;

STATUS
------------
OPEN

SQL> select open_mode from v$database;

OPEN_MODE
--------------------
READ WRITE

Check HTTP Port:


SQL>SELECT DBMS_XDB.GETHTTPPORT FROM DUAL;

-- If the above returns 0 then run this

Set HTTP Port:

EXEC DBMS_XDB.SETHTTPPORT(8080);

 SQL>SELECT LOG_MODE FROM SYS.V$DATABASE;

 ARCHIVELOG  or  NO ARCHIVELOG

SQL> select dbms_xdb.gethttpport from dual;

GETHTTPPORT
-----------
       8080


SQL> show parameter DB_RECOVERY_FILE_DEST;

NAME                     TYPE     VALUE
------------------------------------ ----------- ------------------------------
db_recovery_file_dest             string     /u01/app/oracle/fast_recovery_
                         area
db_recovery_file_dest_size         big integer 10G


SQL> ALTER SYSTEM SET DB_RECOVERY_FILE_DEST_SIZE = 50G;

System altered.

SQL> show parameter DB_RECOVERY_FILE_DEST;

NAME                     TYPE     VALUE
------------------------------------ ----------- ------------------------------
db_recovery_file_dest             string     /u01/app/oracle/fast_recovery_
                         area
db_recovery_file_dest_size         big integer 50G



SQL> SELECT LOG_MODE FROM SYS.V$DATABASE;

LOG_MODE
------------
NOARCHIVELOG

SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup mount
ORACLE instance started.

Total System Global Area  622149632 bytes
Fixed Size            2229048 bytes
Variable Size          394267848 bytes
Database Buffers      222298112 bytes
Redo Buffers            3354624 bytes
Database mounted.
SQL> alter database archivelog;

Database altered.

SQL> alter database open;

Database altered.

SQL> SELECT LOG_MODE FROM SYS.V$DATABASE;

LOG_MODE
------------
ARCHIVELOG

[root@fws Desktop]# lsnrctl status

LSNRCTL for Linux: Version 11.2.0.2.0 - Production on 08-OCT-2013 02:57:19

Copyright (c) 1991, 2011, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 11.2.0.2.0 - Production
Start Date                08-OCT-2013 02:36:40
Uptime                    0 days 0 hr. 20 min. 41 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Default Service           XE
Listener Parameter File   /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora
Listener Log File         /u01/app/oracle/diag/tnslsnr/fws/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC_FOR_XE)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=fws.colbd.com)(PORT=1521)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=fws.colbd.com)(PORT=8080))(Presentation=HTTP)(Session=RAW))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
Service "XE" has 1 instance(s).
  Instance "XE", status READY, has 1 handler(s) for this service...
Service "XEXDB" has 1 instance(s).
  Instance "XE", status READY, has 1 handler(s) for this service...
The command completed successfully
[root@fws Desktop]#



 expdp system schemas=sajib directory=dmpdir dumpfile=sajib.dmp logfile=expsajib.log

expdp system/051502718 schemas=sajib directory=dmpdir dumpfile=expsajib.dmp logfile=expsajib.log

EXPORT COMMAND
for Full Data Mode:
exp full=y file=dba.dmp grants=y rows=y
exp full=y file=dba.dmp log=dba.log

for User Mode:
exp sajib/sajib file=sajib.dmp owner=sajib grants=y rows=y compress=y log=sajib.log

IMPORT COMMAND

imp full=y ignore=y file=expdat.dmp

Thursday, 18 April 2013

How do I stop firewall?


Start Iptables under Linux


Q. How do I start Iptables firewall under RHEL / Red Hat / CentOS / Fedora Linux from a shell prompt? How do I stop firewall?

A. First, you need to configure firewall rules by editing text file located at /etc/sysconfig/iptables. You can also use setup command to configure firewall. Just type the following as root user:

# setup

Select Firewall configuration and just follow on screen instructions.
Once configuration is updated type the following command at a shell prompt:

To start firewall from a shell enter:

# chkconfig iptables on
# service iptables start

To stop firewall, enter:

# service iptables stop



For Details about iptables:
http://www.linuxhomenetworking.com/wiki/index.php/Quick_HOWTO_:_Ch14_:_Linux_Firewalls_Using_iptables#.UXFvBMr0nIV 






Tuesday, 20 November 2012

How to mirror the system and boot partition (RAID1) in Windows Server 2003

This step-by-step article describes how to mirror the system and boot partition in Windows Server 2003. This scenario is based on the assumption that the system and boot files are located on disk 0 and that disk 1 is unallocated space.

Requirements

  • At least two hard-disk drives; IDE, small computer system interface (SCSI), or mixed architecture is permissible.
  • The second drive must be at least the size of the volume on which the operating system boot and system files reside to permit mirroring.
  • The Windows Server 2003 system and boot files must reside on the same volume to be mirrored.
Note The memory dump file is written only to the boot hard disk. Windows Server 2003 can continue to work with a mirrored system disk configuration even if one of the disks in the mirror is removed. However, the memory dump file cannot be written to the remaining system disk in the mirror. You must schedule a system restart for the memory dump file to be written to the remaining hard disk.

Set up the disk management system

  1. Click Start, point to Administrative Tools, and then click Computer Management to open the Computer Management console.
  2. Expand the Storage node.
  3. Click Disk Management.
  4. On the View menu, point to Top, and then click Disk List.

    In the right pane, the attributes of each disk in the system are displayed.
  5. On the View menu, point to Bottom, and then click Graphical View.

    At the bottom of the right pane, a color-coded graphical view of the disks on the system is displayed:
    • Disk description panel: The disk description panel (which is gray) is located to the left of the volume description, which is in color. The disk description contains information about each disk's disk number, whether its configuration is basic or dynamic, its size, and its online or offline status.
    • Volume description panel: The volume description panels are color-coded. They hold information about each volume, such as the drive letter (if assigned), whether the volume is allocated or unallocated, the partition or volume size, and the health status of the volume.

Upgrade to dynamic disks

RAID systems require dynamic disks in Windows Server 2003. Any disks that you are upgrading must contain at least 1 megabyte (MB) of free space at the end of the disk for the upgrade to succeed. Disk Management automatically reserves this free space when it creates partitions or volumes on a disk, but disks with partitions or volumes that are created by other operating systems may not have this free space available.

Note You must be logged on as an administrator or a member of the Administrators group to complete this procedure. If your computer is connected to a network, network policy settings may also prevent you from completing this procedure.

To upgrade a basic disk to a dynamic disk, follow these steps:
  1. Before you upgrade disks, quit any programs that are running on those disks.
  2. Right-click the gray disk description panel, and then click Upgrade to Dynamic Disk.
  3. If the second disk is not a dynamic disk, follow these steps to upgrade it to a dynamic disk.

Mirror the boot and system volume

In this scenario, disk 1 is the disk on which the image of disk 0 will be mirrored.

Note Partitions are referred to as volumes when the disks are dynamic.
  1. Disk 1 must be unallocated space before you can proceed with mirroring.
  2. Right-click disk 0 (which contains the boot and system files), and then click Add Mirror.
  3. A dialog box opens in which any disk on your system that is available for mirroring is displayed. Select the disk of your choice (in this example, it is disk 1), and then click Add Mirror.

    Both disk 0 and disk 1 will now have the same color code, the same drive letter, and the volumes will have the status note "Regenerating" displayed while the information is being copied from the first disk to the second disk. The system will automatically size the volume of the new mirror to the same size as that of the original boot and system volume.
  4. If you now want to boot from the new mirrored disk, you have to change the Boot.ini ARC path that points the computer to the partition in which the system files are located.

Troubleshooting

After you upgrade a basic disk to a dynamic disk, any existing partitions on the basic disk become (dynamic) simple volumes. You cannot change the dynamic volumes back to partitions.

A dynamic disk cannot contain partitions or logical drives, nor can it be accessed by MS-DOS or by any Windows operating systems other than Windows Server 2003.

Important Do not use a hardware RAID solution and a software RAID solution on the same disk.

Friday, 31 August 2012

make ping file

Open up Notepad

c:\windows\system32\ping 4.2.2.1 -t

or

Title title_name
Color 9F
ping 4.2.2.1 -t


or

ping 4.2.2.1 -t >>txt

or

@ECHO OFF

:LOOPSTART

time /T
ping google.com -n 3660


GOTO LOOPSTART

or

@echo off
title JMS Mail Server
time /T
color 9F
ping 103.5.232.196 -t

Then save this file as a .bat file. e.g. ping.bat



 0 = Black       8 = Gray
 1 = Blue        9 = Light Blue
 2 = Green       A = Light Green
 3 = Aqua        B = Light Aqua
 4 = Red         C = Light Red
 5 = Purple      D = Light Purple
 6 = Yellow      E = Light Yellow
 7 = White       F = Bright White

Wednesday, 18 July 2012

সাব্বিন হাসান, আইসিটি এডিটর
বাংলানিউজটোয়েন্টিফোর.কম

এ সময়ে ব্যবসা, কর্মক্ষেত্রে এমনকি বাসাবাড়িতেও নিরাপত্তার বিষয়টি সর্বোচ্চ গুরুত্ব পাচ্ছে। এ অবস্থায় প্রযুক্তিপণ্য এনেছে বৈপ্লবিক সমাধান। নিরাপত্তায় অন্যতম সমাধান প্রযুক্তিপণ্য সিসিটিভি এবং ডিভিআর বা ডিজিটাল ভিডিও রেকর্ডিং।

অফিস, নির্মাণপ্রতিষ্ঠান সুবৃহৎ শপিংমল ছাড়াও বিদ্যালয়ে পর্যন্ত নিরাপত্তায় ব্যবহৃত হচ্ছে সিসিটিভি। সারা বিশ্বে এর গুরুত্ব ও ব্যবহার দিন দিন বাড়ছে। বাংলাদেশ এর ব্যতিক্রম নয়। সারা বিশ্বে যে কয়টি নামকরা সিসিটিভি ক্যামেরা বা ডিভিআর ব্রান্ড জনপ্রিয়তা পেয়েছে এর মধ্যে টেলিআই অন্যতম।

হংকংকেন্দ্রিক এ প্রতিষ্ঠান বাংলাদেশে সিসিটিভি পণ্য পরিবেশক আইসিএলয়ের মাধ্যমে দীর্ঘদিন ধরে বাজারে টেলিআই পণ্যসেবা বাজারজাত করে আসছে। এ মুহূর্তে টেলিআই পণ্যের জনপ্রিয়তা এবং বাজার চাহিদার কথা চিন্তা করে টেলিআই বাংলাদেশে সরাসরি তাদের কার্যক্রম করার সিদ্ধান্ত নিয়েছে।

আনুষ্ঠানিক এ সূচনায় বক্তব্য রাখেন টেলিআই বাংলাদেশের ব্যবস্থাপনা পরিচালক জাভেদ মাহমুদ। এ ছাড়াও বিশেষ অতিথি ছিলেন ডক্টর ক্লিফ চ্যান।

জাভেদ মাহমুদ বলেন, দীর্ঘদিন থেকে আইসিইএল দেশে নিরাপত্তা প্রযুক্তি ও পণ্যসেবা সরবরাহ ও বিপণন করে আসছে। আর কারিগরি মানোন্নয়ন, বিক্রয় এবং বিপণনে সহযোগিতা করে আসছে টেলিআই গ্রুপ। সিঙ্গাপুর, ইংল্যান্ড, চীন, ফিলিপাইন, যুক্তরাষ্ট্র ছাড়াও বিশ্বের বিভিন্ন দেশে আছে টেলিআইয়ের সেবা প্রতিষ্ঠান। নতুন এ যৌথ প্রয়াসে সিসিটিভি নিরাপত্তা ব্যবস্থা পদ্ধতি, বিক্রয় ও বিপণনে আরও নবগতি আসবে বলে তিনি দৃঢ় আশা ব্যক্ত করেন।

বাংলাদেশে টেলিআইয়ের যাত্রা প্রসঙ্গে ক্লিফ চ্যান বলেন, বাংলাদেশে টেলিআইয়ের আনুষ্ঠানিক যাত্রা শুরু হলো। এতে পণ্য ও সেবার মান আরও সুনিশ্চিত হবে। এ ছাড়াও চ্যান টেলিআইয়ের পণ্যের বিভিন্ন কারিগরি দিক নিয়ে সুনির্দিষ্ট আলোচনা করেন।

টেলিআই প্রসঙ্গে ক্লিফ চ্যান বাংলানিউজকে বলেন, এ ব্র্যান্ডের মাধ্যমে এইচডি মানের সিসিটিভি আউটপুট পাওয়া যাবে। আর তা সংরক্ষণে জায়গাও কম খরচ হবে। সব মিলিয়ে এটি একটি সাশ্রয়ী প্যাকেজ।

বাংলাদেশ সময় ১৮৪২ ঘণ্টা, জুলাই ১৪, ২০১২

Wednesday, 4 July 2012

ফ্রীলান্স সাইট



অভিজ্ঞদের সাথে আলোচনার একটা বিষয় এটা হতে পারে। আপনি কিভাবে মার্কেট প্লেস চিনবেন। কোনটা আপনার জন্য ভাল হবে। কি কাজ আপনি করতে পারবেন আসব নিয়ে। লক্ষ করুন, সারা বিশ্বে অনেক রেপুটেড ফ্রীলান্স সাইট আছে। তার মধ্যে উল্লেখযোগ্য: oDesk.com, Freelancer.com, eLance.com,, vWorker.com ইত্যাদি। এদের সম্পর্কে আমার লিখা দৈনিক সমকালের ফিচার থেকে সংক্ষেপে কিছু লিখা দিলাম নিচে:
ফ্রীলান্সার.কম: নিউ সাউথ ওয়েলস, সিডনী-তে অবস্থিত ফ্রীলান্সার.কম সাইটটি গেট-এ-ফ্রীলান্সার.কম নামে যাত্রা শুরু করে ২০০৪ সালে। পরবর্তীতে ২০০৯ অস্ট্রেলিয়ান কোম্পানি Ignition Networks ৭ই মে ২০০৯ সালে গেট-এ-ফ্রীলান্সার.কম কে কিনে নেয় এবং সেই বছরের অক্টোবর মাসে সাইটটির নাম পরির্তন করেন নাম কর হয় বর্তমান ফ্রীলান্সার.কম। সাইটটির সিইও হিসেবে আছেন Matt Barrie. সাইটটিতে বর্তমানে ৩২, ৩৫,২২০ জনেরও বেশি সংখ্যক মানুষ ১৪,৮৭,৬৯৮টি প্রোজেক্টে কাজ করেছেন বায়ার এবং প্রোভাইডার হিসেবে এবং এই নিউজটি লিখার মুহুর্ত পর্যন্ত সর্বমোট অর্থ আয়ের পরিমান ১২,০৩,৯৩,৬০০ ডলার। সাইটটিতে আপনি একই সাথে কাজ করতে এবং আপনার কাজ অন্যদের দিয়ে করিয়ে নিতে পারবেন। বর্তমানে সাইটটিতে আপনি ঘণ্টা ভিত্তিক এবং বরাদ্দকৃত(Fixed) মূল্য ওয়েব ডিজাইন ও ডেভেলপমেন্ট, গ্রাফিক ডিজাইন, সফটওয়্যার ডিজাইন, আপ্লিকেশন ডিজাইন সহ আর ২০০ এর উপরে বিভিন্ন ক্যাটাগরিতে অজস্র কাজ পাবেন। সাইটটির ঠিকানা: https://www.freelancer.com
ওডেস্ক.কম: ফ্রীলান্সার.কম এর মতো ওডেস্ক-ও বর্তমানে সর্বাধিক জনপ্রিয় ফ্রীলান্সিং মার্কেটপ্লেস। ২০০৩ সালে রেড সিটি, ক্যালিফোর্নিয়া-তে ওডেস্কের কার্যক্রম শুরু হয়। ওডেস্কের সিইও হিসেবে আছেন Thomas Layton. ওডেস্কেও কাজের ধরন ২টাঃ ঘণ্টা ভিত্তিক এবং বরাদ্দকৃত(Fixed) মূল্য। মূলত: ওডেস্কের থেকেই ফ্রীলান্সার.কম তাদের কর্মসূচীতে ঘণ্টা ভিত্তিক কাজ করানোর প্রক্রিয়া চালু করে। ওডেস্কেও আপনি বিভিন্ন বিভাগের আওতায় কয়েক লক্ষাধিক কাজ পাবেন। এখানে ঘণ্টা ভিত্তিক কাজের টাকা আপনি আপনার ওডেস্ক সফটওয়্যারের রেকর্ড অনুযায়ী কাজ শেষে পাবেন। তবে নির্ধারিত(ফিক্সড) মূল্যের কাজের টাকার পেমেন্ট গুলোর কোন গ্যারান্টি পাবেন না। সেটা আপনি প্রোজেক্ট এর বিড প্লেস করার আগেই জানানো হয়। উইকিপিডিয়ার তথ্যমতে সাইটটিতে এখন পর্যন্ত প্রায় ২,০০,০০০ এর বেশি বিভিন্ন দেশের মানুষ বায়ার এবং প্রোভাইডার হিসেবে কাজ করছেন। এই সাইটটিতেও আপনি একই সাথে কাজ করতে এবং আপনার কাজ অন্যদের দিয়ে করিয়ে নিতে পারবেন। সাইটটির ঠিকানা: https://www.odesk.com
ভিওয়ার্কার.কম: বর্তমান ভিওয়ার্কার.কম মূলত রেন্ট-এ-কোডার.কম এর নতুন সংস্করণ। ২০০১ সালে থাম্বা, ফ্লোরিডা-তে সিইও ইয়ার ইপলিটো এর হাত ধরে রেন্ট-এ-কোডার.কম(বর্তমান ভিওয়ার্কারের) যাত্রা শুরু হয়। সাইটটি মূলত যাত্রা শুরু করে Craigslist বিজ্ঞাপন জাতীয় কাজ দ্বারা। বর্তমানে এই ধরনের কাজের সাথে ওয়েব ডেভেলপমেন্ট, অ্যাপ্লিকেশন ডেভেলপমেন্ট, ডাটাবেজ ডিজাইন সহ বিভিন্ন ক্যাটাগরিতে কয়েক লক্ষাধিক কাজের দেখা মিলে। সাইটটিতে বর্তমানে বায়ার এবং প্রোভাইডারের সংখ্যা মিলে দাঁড়ায় ৫,৩৩,০১০ জন। ফ্রীলান্সার এবং ওডেস্কের মতো এই সাইটটিতে আপনি একই সাথে বায়ার এবং প্রোভাইডারের ভূমিকা পালন করতে পারবেন না। দুটি ভূমিকায় কাজ করতে হলে আপনাকে অবশ্যই ২টি একাউন্ট থাকতে হবে। সাইটটির ঠিকানা: https://www.vworker.com