Kategoriler:
Linux
The tar (tape archive) command bundles a bunch of files together and creates an archive (commonly called a tar file or tarball) on a tape, disk drive, or floppy disk. The original files are not deleted after being copied to the tar file.
To create an archive using tar, use a command like this, which bundles all the files in the current directory that end with .doc into the alldocs.tar file:
tar cvf alldocs.tar *.doc
Devamını oku
Kategoriler:
Linux
wget -m http://www.simsekmert.com/FOLDER_TO_DOWNLOAD/
- -m, –mirror
- shortcut for -N -r -l inf –no-remove-listing.
wget -H -r --level=1 -k -p http://www.simsekmert.com/FOLDER_TO_DOWNLOAD/
-r, –recursive
- Specify recursive download.
- -l, –level=NUMBER
- Maximum recursion depth (inf or 0 for infinite).
- -k, –convert-links
- Make links in downloaded HTML point to local files.
- -p, –page-requisites
- Get all images, etc. needed to display HTML page.
Kategoriler:
Linux Ubuntu
A common task is to set up mail forwarding on your web or mail server so that you can have email addresses like me@mydomain.com ; however, managing email on your server sucks, especially if you get into the horrors of courier imap or hula, and then you have to worry about backing up your email, spam filtering and lots of lovely tasks.
Kategoriler:
Linux Ubuntu
sudo dpkg -i filename.deb
Kategoriler:
Linux Ubuntu
Defining physical interfaces such as eth0
Lines beginning with the word “auto” are used to identify the physical interfaces to be brought up when ifup is run with the -a option. (This option is used by the system boot scripts.) Physical interface names should follow the word “auto” on the same line. There can be multiple “auto” stanzas. ifup brings the named inter faces up in the order listed. For example following example setup eth0 (first network interface card) with 192.168.1.5 IP address and gateway (router) to 192.168.1.254:
iface eth0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.254
Devamını oku
Kategoriler:
CentOS Linux
CentOS da DNS konfigürasyonu nasıl yapılır???
Devamını oku
Kategoriler:
Red5 Media Server
Red5 Media Server Default Ports
1935, 8088, 5080, 1936
RTMP: 1935
RTMPT: 8088
HTTP servlet engine port: 5080
Debug proxy port: 1936
Kategoriler:
Linux
Uzaktan erişim günümüzde oldukça önemli bir konu. Eskiden ev kullanıcılarının ilgilendiği bir saha değildi. Ancak Türkiye’de ADSL’in yaygınlaşmasıyla, bazı alışkanlıklarımız değişti. Artık bilgisayarımızı her an her yerden kontrol edebilmek istiyoruz. Gerektiğinde bilgisayarımıza erişip, bir şeyler kopyalayabilmek ya da önemli dosyalara erişmek icap ediyor. İsterseniz daha somut şekilde örnekleyelim; bir Internet bağlantınız olduğu takdirde, ofiste otururken evinizdeki bilgisayara girebilir ve en sevdiğiniz şarkıları, iş yerinde dinleyebilirsiniz. Bunu yapmak güzel olmaz mıydı? ADSL kullanıcıları için denemeye değer…
Devamını oku