Create network drive using ssh to window env.

OK. Before I start on this one, I’m stating for the record that I’m posting this as much so I don’t have to find it again as anything. However, given the number of places online that I found this question asked, but not answered, I hope it proves useful to the folks who’ve been looking for it. Lanjutkan membaca Create network drive using ssh to window env.

How to extract multi-part zip files

Have you ever seen these file ?

  • zipfiles.zip
  • zipfiles.z01
  • zipfiles.z02
  • zipfiles.z03
  • ……
  • zipfiles.z10

These are the multi-part of zipped files, which mean  one big file are to big to make archive so it should split  into several files. These files were created by winzip. Probably for many people (included me) it such a weird file, and they don’t know how to extract the file archives.

After my research in whole google how to extract it, here i want to share to you how to extract it.

For window platform
There are so many software has support for these extension such as winzip, winrar, 7-zip, and many other, put those file in one folder, and then just click with your supported software above, and whala…. the file  extracted.

For linux platform
The problem for newbie user in linux is they don’t now how to combine the command within. I got the problem too with these platform, but that’s why i like most with this platform, it challenged me to know. Alright then here the command for solve this problem.

hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
hendra-k@server $ zip -F zipfiles-full.zip
hendra-k@server $ unzip zipfiles-full.zip

here the description for these command above :

hendra-k@server $ cat zipfiles.* > zipfiles-full.zip
= merging those file into one full zipped file

hendra-k@server $ zip -F zipfiles-full.zip
= Fixing the archive of the overall zipped files

hendra-k@server $ unzip zipfiles-full.zip
= Extract the full zipped fil

Hope this tutorial is usefull for you

How do I add jobs to cron under Linux or UNIX oses?

Cron job are used to schedule commands to be executed periodically i.e. to setup commands which will repeatedly run at a set time, you can use the cron jobs.

crontab is the command used to install, deinstall or list the tables used to drive the cron daemon in Vixie Cron. Each user can have their own crontab, and though these are files in /var/spool/cron/crontabs, they are not intended to be edited directly. You need to use crontab command for editing or setting up your own cron jobs. Lanjutkan membaca How do I add jobs to cron under Linux or UNIX oses?