انجمنهای فارسی اوبونتو
کمک و پشتیبانی => راهنماها، نکات و ترفندها => نویسنده: ریاضی در 28 اردیبهشت 1386، 10:30 قظ
-
با سلام، مرجعی کامل از دستورات لینوکس را از وب پیدا کردم که فکر کردم به درد هممون بخوره.
پیوست فایل pdf.
-
ممنون !خیلی لازم بود
-
دستت درد نکنه ریاضی جان. مرسی
-
مرسی آقا. خیلی خوب بود
-
باز هم مثل همیشه دوستان لطف دارن.
ممنون
-
مرسی دستت درد نکنه ریاضی جان
-
من که مجوز انتشار این pdf رو ندیدم... ایشاا... که مجوزش آزاد بوده. بد نیست یه صفحه مثل همین با توضیحات فارسی درست کنید. منم قول میدم که حتما در تکمیلش کمکتون کنم ;)
راستی این صفحه (https://help.ubuntu.com/community/UsingTheTerminal) هم میتونه کمک خوبی باشه...
-
من که مجوز انتشار این pdf رو ندیدم... ایشاا... که مجوزش آزاد بوده.
مطمئن باشید که آزاد آزاد. راحت استفاده کنید و حتی به دوستانتون هم بدید. :)
راستی این یک صفحه وب بوده و خودم شخصا pdfش کردم ;)
-
این دستورات خیلی کامل هستن و میشه راحت باهاشون حتی بازی هم کرد . بیایین کارای اساسی رو شروع کنیم
فکر کنم دیگه اعضای سایت راه افتاده باشن. به جز من ! ;)
-
عالی بود
-
پاسخ به: مرجع کامل دستورات لینوکس برای مبتدیان
-
آقای ریاضی خیل ممنون. بسیار جالب بود.
-
مرجع خوبی بود...
دستتون درد نکنه ...
-
خیلی کار راه انداز و ضروری بود.
ممنون ریاضی جون...
-
سلام
نحوه پیاده سازی شبکه درلینوکس چگونه هست ؟ ::)
مجموعه دستورات لینوکس رو هم اگه میشه میخوام بدونم :)
-
مجموعه دستورات لینوکس رو هم اگه میشه میخوام بدونم :)
::) ::)
شما هر جا اشکالی داشتید بپرسید آخه اینجا رفع اشکال هست .تلاش کنین و مطالعه کنین هر سئوال داشتین بگین در خدمتیم ;)
-
ممنون بهش خيلي نياز داشتم
-
جناب ریاضی خیلی عالی بود =D>
-
+1
-
ببخشید
اینا توی pdf نبود : میتونه کاربرد زیادی برای تازه وارد ها داشته باشه
Create Directory ایجاد دایرکتوری
----------------------
Creating a new, empty directory is very easy. You use the mkdir command:
mkdir dir1
********************************************************
Remove Directory حذف دایرکتوری
-----------------------
There are two commands you can use for removing directories. If the directory is empty, you can use rmdir:
rmdir dir1
You can use rmdir only if the directory is empty. If you want to remove a directory with all its contents, you can use rm with the -r option. The -r option tells rm to remove a directory recursively:
rm -r dir1
It goes without saying that you can cause a lot of trouble with rm -r if you're not careful! In some cases it might be a good thing to use the -i option when deleting a directory with its contents so that you'd be prompted before each file in the directory gets deleted:
rm -ir dir1
*******************************************************
Copy & Move Directory کپی و جابجا کردن دایرکتوری
------------------------------
< Copying and moving directories >
For copying and moving directories you can use the cp and mv commands just like you use them with files. Yeah, I know. If you've already tried to copy a directory with cp, you've probably noticed that cp just complains at you. Probably it says something like cp: omitting directory yadda yadda. You see, the cp command wants you to use the -r option if you want to copy a directory with its contents. The -r means "copy recursively":
$ cp -r dir1 dir2
The above creates a directory named dir2 whose contents will be identical to dir1. However, if dir2 already exists, nothing will be overwritten: the directory dir1 will be copied into the dir2 directory under the name dir2/dir1.
When renaming directories, you use the mv command exactly the same way as with files:
$ mv dir1 dir2
When dealing with directories, mv works a bit like cp does. If dir2 doesn't exist, the above will rename dir1 to dir2, but if dir2 exists, the directory dir1 will be moved into the dir2 directory under the name dir2/dir1.
با تشکر
www.jozveha.com
-
واقعا تشکر و سپاس فراوان =D> :KS =D>