Date: Mon, 9 May 2011 04:07:10 -0700 (PDT) From: Bill Tillman <btillman99@yahoo.com> To: FreeBSD Questions <freebsd-questions@freebsd.org> Subject: Re: Newbie Needing Help Message-ID: <132837.23458.qm@web36508.mail.mud.yahoo.com> In-Reply-To: <20110509010631.531da46f.web@3dresearch.com> References: <C9F6205F-EFEC-484C-B97E-01046AF89502@earthlink.net> <20110509010631.531da46f.web@3dresearch.com>
index | next in thread | previous in thread | raw e-mail
________________________________ From: Janos Dohanics <web@3dresearch.com> To: FreeBSD Questions <freebsd-questions@freebsd.org> Sent: Mon, May 9, 2011 1:06:31 AM Subject: Re: Newbie Needing Help On Sun, 8 May 2011 17:17:48 -0700 John or Judy Hixson <johnorjudy@earthlink.net> wrote: > [...] > Another problem that's throwing me for a loop is that even though I'm > logged in as root I'm getting a "permission denied" return when I > list a file (e.g. /etc/fstab) and press enter. When you enter a file name at the prompt, such as /etc/fstab, and you receive the response "permission denied", it is because /etc/fstab is not an executable file. Entering just the file name will cause the shell to try to execute the file, but this file has no permission to be executed, (even by root). You can view the permissions for this file by entering: ls -l /etc/fstab and you'll see something similar to this: -rw-r--r-- 1 root wheel 278 Sep 28 2008 /etc/fstab ^ ^ ^ However, for example, the file /bin/ls is executable: -r-xr-xr-x 1 root wheel 29656 Dec 11 2009 /bin/ls ^ ^ ^ Michael Lucas' book is a great way to get started. You can read many of his tutorials at http://oreilly.com/pub/ct/13. I have also found Dru Lavigne's series of articles "FreeBSD Basics" a great resource (http://oreilly.com/pub/ct/15). -- Janos Dohanics _______________________________________________ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" As you can see, many users here will be helpful. The best advice I've seen so far is to do some google or yahoo searches for UNIX TUTORIALS and you'll find dozens of them. The FreeBSD website has a nice section called http://www.freebsd.org/projects/newbies.html which will get you off to a good start. And in spite of what the VI fans will tell you there is another built-in text editor called "ee" for Easy Editor and it's designed for newbies to get started editing files. VI is a very powerful tool but it's not very intuitive until you learn it or have the commands listed next to you. Good luck.help
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?132837.23458.qm>
