LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   "$ vi /.profile" not working properly (https://www.linuxquestions.org/questions/linux-desktop-74/%24-vi-profile-not-working-properly-4175476334/)

nobahn 09-07-2013 09:28 PM

"$ vi /.profile" not working properly
 
  1. I hope that that this is the correct forum.
  2. I've described the problem at my blog.
  3. If this isn't the correct way to pose questions, then I apologize.

alienDog 09-07-2013 09:45 PM

You're trying to access the .profile file in your root directory (/). That's not where it resides. .profile is under your own home directory, so use:
Code:

vi ~/.profile
where ~ signifies your own home directory. You can also just use:
Code:

vi .profile
since you're already in your home directory.

nobahn 09-07-2013 09:57 PM

alienDog--
Thanks!:)


All times are GMT -5. The time now is 04:49 PM.