Search Results

Search: Posts Made By: Michael Safyan
3,621
Posted By Michael Safyan
There are many Linux distributions out there, the...
There are many Linux distributions out there, the vast majority of which are free. However, I strongly recommend you take a look at Ubuntu (http://www.ubuntu.com/), since it is an incredibly...
10,072
Posted By Michael Safyan
This is specific to your terminal emulator. If...
This is specific to your terminal emulator. If you are using the Gnome Terminal Emulator, you can use SHIFT+CTRL+C to copy and SHIFT+CTRL+V to paste.

EDIT: As noted above, if you are simply trying...
5,448
Posted By Michael Safyan
This is not actually unusual. There is such a...
This is not actually unusual. There is such a thing as hidden files and folders. Usually, only files or folders that start with dot (.) are hidden, although it is possible for distributions to make...
Forum: Programming 08-18-2009
6,930
Posted By Michael Safyan
Throw an exception.
What you want to do is throw an exception.


// Special exception to throw
class exit_exception : public runtime_error
{
public:
exit_exception() : runtime_error("Termination"),...
2,688
Posted By Michael Safyan
"No spaces on this line either: ..." No....
"No spaces on this line either: ..."

No. That is incorrect. The space is optional, and -- if the GNU Autoconf manual is to believed -- is, in fact, the standard; however, all modern unices accept...
Forum: SuSE 05-14-2009
3,396
Posted By Michael Safyan
Would you mind posting the results of executing...
Would you mind posting the results of executing the following commands?


echo "$PATH"
echo "$LD_LIBRARY_PATH"
ls "~/.local/bin"
ls "~/.local/lib"
4,404
Posted By Michael Safyan
The "umask" function enables/disables the...
The "umask" function enables/disables the permissions that can be set for files on a per-process basis. The permissions given to open, create, mkdir, and other functions are effectively ANDed with...
Forum: SuSE 05-14-2009
3,396
Posted By Michael Safyan
Quick Solution: In the terminal, type: ...
Quick Solution:

In the terminal, type:

cd ~
mkdir -p .local
cd .local
cp -rf ~/usr/local/* ./
echo 'export PATH="$PATH":"$HOME/.local/bin"' >> ~/.bashrc
echo 'setenv PATH...
Showing results 1 to 8 of 8

 
All times are GMT -4. The time now is 12:45 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy