Archive

Archive for August 29th, 2008

dari puasa ke puasa

August 29th, 2008 Administrator No comments

ternyata, arsip paling tua disini ditulis saat puasa tahun lalu. serasa dejavu saja. D (lahir dan kembali lahir di bulan yang baik).

dengan segala keterbatasan yang ada, pengen rasanya bisa membuat studiosewelas.net lebih semarak dan usefull. kuakui, menulis itu bukan pekerjaan gampang, apalagi menulis sesuatu yang sedikit banyak punya arti atau kaitan dengan orang lain (membuat orang lain merasa dilibatkan).

kalau sedang jalan jalan ke blog punya teman teman, rasanya banyak sekali hal yang sebetulnya menarik dan pas buat ditampil juga disini.

dimana pas-nya dev?

pas karena tulisan teman teman kadangkala sedikit banyak menyinggung studiosewelas.

mumpung bulan baik, saya punya permintaan yang semoga juga baik. ) jika teman teman kebetulan sedang menulis sesuatu di blog pribadi, dan kebetulan sedikit banyak menyinggung studiosewelas, mohon kiranya menyempatkan diri menulis ulang ke studiosewelas.net (cuman copy paste aja kan?). etung etung untuk meramaikan dan berbagi.

selamat berpuasa!

Read original post at http://studiosewelas.net/2008/08/30/dari-puasa-ke-puasa/

Categories: Alumnus Blog Tags:

Linux lagi

August 29th, 2008 Administrator No comments

eBerikut beberapa istilah yang sering digunakan di linux, beberapa istilah berikut juga sering digunakan di unix based OS.

Kernel The kernel is a program that constitutes the central core of a computer operating system. It has complete control over everything that occurs in the system.

kernel can be contrasted with a shell (such as bash, csh or ksh in Unix-like operating systems), which is the outermost part of an operating system and a program that interacts with user commands. The kernel itself does not interact directly with the user, but rather interacts with the shell and other programs as well as with the hardware devices on the system, including the processor (also called the central processing unit or CPU), memory and disk drives

file system?

a file system (sometimes written filesystem) is the way in which files are named and where they are placed logically for storage and retrieval. The DOS, Windows, OS/2, Macintosh, and UNIX-based operating systems all have file systems in which files are placed somewhere in a hierarchical (tree) structure. A file is placed in a directory (folder in Windows) or subdirectory at the desired place in the tree structure.

File systems specify conventions for naming files. These conventions include the maximum number of characters in a name, which characters can be used, and, in some systems, how long the file name suffix can be. A file system also includes a format for specifying the path to a file through the structure of directories.

what is mutiuser?

computer systems that support two or more simultaneous users. All mainframes and minicomputers are multi-user systems, but most personal computers and workstations are not. Another term for multi-user is time sharing.

what is GUI?

A graphical user interface (GUI) is a human-computer interface (i.e., a way for humans to interact with computers) that uses windows, icons and menus and which can be manipulated by a mouse (and often to a limited extent by a keyboard as well).

GUIs stand in sharp contrast to command line interfaces (CLIs), which use only text and are accessed solely by a keyboard. The most familiar example of a CLI to many people is MS-DOS. Another example is Linux when it is used in console mode (i.e., the entire screen shows text only).

Linux filesystem types?

minix, ext, ext2, ext3, xia, msdos, umsdos, vfat, proc, nfs, iso9660, hpfs, sysv, smb, ncpfs

what is fdisk?

The program Microsoft operating systems MS-DOS and non-NT versions of Windows use to create partitions on hard drives. Technically, the program is called fdisk.exe. It uses a text-based interface. Windows 95b first added support for FAT-32 partitions into fdisk. Before that it only supported partitions up to 2 GB using FAT-16. This is also a slang term for wiping a drive out completely, as in “I’m going to F-Disk this drive if Windows crashes one more time!” There are several non-Microsoft equivalents to fdisk, but all serve similar purposes–to allow partitioning of hard disk drives.

what is shell in linux?

A shell is a program that provides the traditional, text-only user interface for Unix-like operating systems. Its primary function is to read commands that are typed into a console (i.e., an all-text display mode) or terminal window (an all-text window) in a GUI (graphical user interface) and then execute (i.e., run) them.

The term shell derives its name from the fact that it is an outer layer of an operating system. A shell is an interface between the user and the internal parts of the operating system (at the very core of which is the kernel).

what is lilo?

Lilo means last in last out . LILO is a versatile boot loader for Linux. It does not depend on a specific file system, can boot Linux kernel images from floppy disks and hard disks, and can even boot other operating systems. One of up to sixteen differernt images can be selected at boot time. Various parameters, such as the root device, can be set indepenantly for each kernel. LILO can even be used as the master boot record.

What is Grub?

Grand Unified Bootloader (GRUB)” .A small software utility that loads and manages multiple operating systems (and their variants).

Where Is the Latest Kernel Version on the Internet?

The easiest way to update your kernel is to get the update directly from the distribution which you are running.
If you need or want to configure and compile your own kernel, the web page at http://www.kernel.org/ lists the current versions of the development and production kernels.

What is FSCK?

fsck – check and repair a Linux file system.
fsck is used to check and optionally repair one or more Linux file systems. filesys can be a device name (e.g. /dev/hdc1, /dev/sdb2), a mount point (e.g. /, /usr, /home), or an ext2 label or UUID specifier (e.g.UUID=8868abf6-88c5-4a83-98b8-bfc24057f7bd or LABEL=root). Normally, the fsck program will try to handle filesystems on different physical disk drives in parallel to reduce the total amount of time needed to check all of the filesystems.

If no filesystems are specified on the command line, and the -A option is not specified, fsck will default to checking filesystems in /etc/fstab serially. This is equivalent to the -As options.

what is partition?

A partition is a section of a hard disk. When you format a hard disk, you can usually choose the number of partitions you want. The computer will recognize each partition as a separate disk, and each will show up under “My Computer” (Windows) or on the desktop (Macintosh).

What is a boot loader?

Most simply, a boot loader loads the operating system. When your machine loads its operating system, the BIOS reads the first 512 bytes of your bootable media (which is known as the master boot record, or MBR). You can store the boot record of only one operating system in a single MBR, so a problem becomes apparent when you require multiple operating systems. Hence the need for more flexible boot loaders.

The master boot record itself holds two things — either some of or all of the boot loader program and the partition table (which holds information regarding how the rest of the media is split up into partitions). When the BIOS loads, it looks for data stored in the first sector of the hard drive, the MBR; using the data stored in the MBR, the BIOS activates the boot loader.

What is PAM?
(Pluggable Authentication Modules) A programming interface that enables third-party security methods to be used in Unix. For example, smart cards, Kerberos and RSA technologies can be integrated with various Unix functions such as rlogin, telnet and ftp.

What is default shell in linux?
Most of the Linux Distributions default shell is bash shell

sek males nerjemahno

Read original post at http://runia2001.blogspot.com/2008/08/linux-lagi.html

Categories: Alumnus Blog Tags:

Cerita skripsi

August 29th, 2008 Administrator No comments

Sejarah skripsiku dimulai dengan pertanyaan2 setengah penting ke para dosen yang kutemui. Pak skripsinya koq di perpus rata2 coding sih? emang yg networking atau yg sejenis gtu gak boleh tah?. La memangnya kamu maunya apa?. Aku mulai berorasi semangat 45 mengutarakan ide2ku. Tapi…… koq dosennya kayaknya ga respon, apa bukan bidangnya atau gimana ya. -sigh-

Walhasil aku memutar otak, mutar stang, belok kanan, rem depan, gas poll. Cling! aku baru ingat kalau beberapa waktu lalu udah install FTP server memakai PureFTPD dan databasenya kan pakai mysql.

Tring2.. ;;)
Tercetus ide u/ membuat sistem informasi yg mengelola seluruh data pelanggan FTP hosting mulai dari data account, data pembayaran, data pelanggan, paket FTP, reset password dll.. Pokok intinya manajemen pelanggan ftp hosting lah. Bayangin aja kayak sistem untuk mengelola account di rapidshare atau gudang upload gtu… cieh.. sok mboisnya diriku.

Akhirnya gerilya dimulai, melalui jalan berliku-liku tapi lewat tol hehe..
Judul skripsiku mungkin kurang mbois ya.. Sistem Informasi Administrasi Pelanggan FTP Hosting…dst2..

Alhamdulillah sudah diuji dan yudisium tanggal 16 Agustus kemarin sudah diketik oleh sayuti melik dan disahkan atas nama bangsa indonesia.. Soekarno Hatta..ralat2!! pemirsa.. diuji oleh dosen2 kampusku lah dan disahkan oleh kampus kalo aq LULUS.

Tapi.. ijasah masih belum ditangan.. harus bayar 750K u/ ambil ijasah, itu uang wisuda dan tetek bengeknya.. cedih..bokek..

Read original post at http://runia2001.blogspot.com/2008/08/cerita-skripsi.html

Categories: Alumnus Blog Tags:

Selamat Berpuasa

August 29th, 2008 Administrator No comments

Menjelang bulan Ramadhan, kami ucapkan selamat menjalankan ibadah puasa. Semoga kita diberi kemudahan dalam menjalankannya. Mohon maaf bila ada kesalahan yang telah kami lakukan.

Bagi yang sibuk mempersiapkan diri buat mudik lebaran seperti juga saya, semoga juga diberi kemudahan mendapatkan sarana transportasi sesuai yang diharapkan. Amin

Read original post at http://ibnufarid.com/2008/08/29/selamat-berpuasa

Categories: Alumnus Blog Tags:

Krisis PeDe ?? Lho kok bisa ???

August 29th, 2008 Administrator No comments

Setelah membaca berita di detik.com berikut:
“Pengamat: SBY Semprot Anak Buah Karena Krisis Pede
Jakarta – Untuk kesekian kalinya, Presiden SBY menyemprot anak buahnya yang dianggap tidak serius memikirkan kepentingan negara. Semprotan terakhir terjadi Kamis 28 Agustus.
Tiga pejabat negara yang tidak serius mendengarkan omongannya saat Sidang Kabinet kena omelan SBY. Menurut pengamat politik, tindakan SBY menyemprot anak [...]

Read original post at http://darudoank.org/?p=99

Categories: Alumnus Blog Tags:

Berteriaklah sepuasnya di Dufan

August 29th, 2008 Administrator No comments

Hari kamis kemarin, pasar tempatku jualan jamu mengadakan acara mini Family Gathering di Dufan, Ancol. Sengaja dipilih waktu disaat orang lain sedang disibukkan oleh rutinitas sehari-hari mereka didalam ruangan kantor, kami pun berteriak dengan lepas disana.

Berikut ini beberapa event yang sempat diabadikan oleh para tukang foto keliling, yaitu dika, idris dan kw.
(klik pada foto untuk melihat versi lebih besarnya)

014.jpg

Sebelum perjalanan kita pun berdoa yang dipimpin oleh akangaziz

015.jpg

sesampai disana, para penjual kacamata dan topi pun menyerbu rombongan

016.jpg

Selasar dengan umbul-umbul merah putih menyambut kedatangan siapa saja

(more…)

Read original post at http://yudhiapr.blogdetik.com/2008/08/29/berteriaklah-sepuasnya-di-dufan/

Categories: Alumnus Blog Tags:

Pesta Kemerdekaan

August 29th, 2008 Administrator No comments

Jumat kemaren kita pergi ke acara pesta 17-an yang diadakan di Al Ahli Club, Zinc. Tempatnya indoor gitu, jadi kita terlindungi dari terik sinar matahari, walaupun begitu kita tetap merasa kegerahan, mungkin AC-nya kurang berfungsi dan memang warga indonesia yang datang lumayan banyak. Acaranya dimulai dari sambutan Bapak Duta RI di Kuwait, menyanyikan lagu indonesia raya, macam-macam lomba [...]

Read original post at http://fahimi.org/?p=297

Categories: Alumnus Blog Tags:

[UNDANGAN] syukuran pernikahan Agus Nur Ika Angga Putra

August 29th, 2008 Administrator No comments

dear kawan,

meneruskan dari empunya acara, bagi kawan kawan yang kebetulan pulang ke sekitaran Madiun khususnya Ngawi pada libur lebaran nanti, dimohon kehadirannya di kediaman kawan kita Agus Nur Ika Angga Putra pada hari Sabtu, 4 Oktober 2008. keperluannya adalah syukuran pernikahan yang pertama kawan kita Agus Nur Ika Angga Putra. untuk detail lainnya masih dibahas di mailing list. so, tunggu info selanjutnya ya!

salam,

dev
~ there is no place like this place

Read original post at http://studiosewelas.net/?p=80

Categories: Alumnus Blog Tags:

Setting Mail Server Redhat 9 (postfix)

August 29th, 2008 Administrator No comments

Buat temen-temen’s yg suka ngoprek linux, terutama Redhat 9.Ni ada sharing dikit gimana cara setting mail server di Redhat 9 pake postfix (bukan sendmail).
Untuk konfigurasinya mail server ada 3 buah file yang harus di’setting’.
A. Konfigurasi file main.cf
[root@inung root]# vi /etc/postfix/main.cf
Isi data konfigurasi dalam file main.cf :
- – - – - – - – - – [...]

Read original post at http://inung.wordpress.com/2008/08/29/setting-mail-server-redhat-9-postfix/

Categories: Alumnus Blog Tags:

Setting samba Redhat 9

August 29th, 2008 Administrator No comments

Ngelanjutin sharing tentang service2 yg ada di Redhat 9, ni ada tambahan service yg bisa dipake di RH9.Yaitu Samba File Sharing, service yg dipake buat sharing data antara OS platform Windows dan Linux.
Untuk konfigurasi lebih detail berikut lampiran contoh settingan file yg hrs di’oprek dikit .
Qt cuma ngedit file smb.conf yg diselipin di directory /etc/samba/ [...]

Read original post at http://inung.wordpress.com/2008/08/29/setting-samba-redhat-9/

Categories: Alumnus Blog Tags: