Search Results

Search: Posts Made By: myle
Forum: Filesystems, Disks and Memory 05-23-2009
6,854
Posted By myle
I think you could give a try to sysinfo().
I think you could give a try to sysinfo().
Forum: Debian 03-13-2009
11,145
Posted By myle
Indeed, and it might be the case here, as well. ...
Indeed, and it might be the case here, as well.
Lenny was recently released.

...You could also try:

apt-get update
apt-get upgrade
apt-get install build-essential


Instead of apt-get,...
Forum: Programming 07-02-2008
2,871
Posted By myle
Makefile
I am writing my first makefile, and I face a problem:

all: sequential pthreads1 pthreads2 openmp1 openmp2

sequential: sequential/main.c sequential/definitions.h
gcc -o seq sequential/main.c
...
3,622
Posted By myle
I want to read a file line by line, so I have...
I want to read a file line by line, so I have used the following code:

exec 3< /tmp/_temp
while read <&3
do
....<some operations here for each line which is in the variable RELPY>
# end of...
3,622
Posted By myle
Exec explanation needed
Hello!
I want to read a file line by line and have each line in a variable. I have found the following code.

#!/bin/bash
exec 3< data
while read <&3
do echo "The number is $REPLY"
a.out...
8,999
Posted By myle
So, I guess this worked because the sed 's/^>...
So, I guess this worked because the
sed 's/^> //' errors
was executed before anything else in the line and the result substitutes the contents of `...` before proceeding to the rest of the code?...
8,999
Posted By myle
sed redirection
I am messing around with sed and I observed the following.

I have as test file a file named errors which contains:



I want to remove the > from the beginning of the lines. So I use the...
Forum: Linux 03-10-2008
12,956
Posted By myle
Some messages are displayed because they are...
Some messages are displayed because they are printed in stderr.
The > redirects only the stdout. So the solution to put a program in absolute silent mode is
&> /dev/null

so in this case the...
6,048
Posted By myle
I have changed the .bash_profile and now it works.
I have changed the .bash_profile and now it works.
3,072
Posted By myle
od -cb .
The following
od -cb .

works in Minix but it doesn't work under Ubuntu or Suse. Why?
Is the tool different or it's because of the different filesystem?
Minix uses its own filesystem called...
6,048
Posted By myle
Indeed. We use LDAP. So do I have to find the...
Indeed. We use LDAP. So do I have to find the LDAP server which is used in order to modify my .profile?

Thanks for the help till now. I have found very useful things while I was searching for more...
6,048
Posted By myle
echo $SHELL /bin/bash cat /etc/passwd |...
echo $SHELL
/bin/bash


cat /etc/passwd | grep bash
root:x:0:0:root:/root:/bin/bash

Do these prove that I run bash?

Thanks for the help DukeNuke2.
6,048
Posted By myle
I use bash and I even tried the echo. I didn't...
I use bash and I even tried the echo. I didn't see any difference.
I am quoting the first part of the .profile.



The first line was already in the .profile
Forum: Linux 03-09-2008
12,956
Posted By myle
Wine in silent mode
I want to run through wine the utorrent and I don't want the messages that are usually displayed in the console,
so I use the following command

wine utorrent.exe > /dev/null &

but it doesn't...
6,048
Posted By myle
.profile - changes don't affect the login
I have modified the .profile in my profile and I don't see any effect.
Why the changes don't have effect?
I tried both on the account at a server where I have limited permissions as user and to my...
Showing results 1 to 15 of 15

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