Search Results

Search: Posts Made By: verdepollo
8,573
Posted By verdepollo
grep matches regular expressions. The regexp for...
grep matches regular expressions. The regexp for a string (filename), followed by a dot, followed by another string (extension) would be something like: grep '.*\.save$'

However you don't need to...
2,832
Posted By verdepollo
That's definitely a specific feature from the...
That's definitely a specific feature from the shell. Older shells used to only show the commands that were run by a user.
2,802
Posted By verdepollo
For simple backups you can use Win7 own tool...
For simple backups you can use Win7 own tool "Backup and Restore".

You have to use "Pro" or "Ultimate" versions if you want to backup to a network drive, though.
1,848
Posted By verdepollo
man pages are independent from the shell so...
man pages are independent from the shell so you'll see the same info regardless of the one you use (assuming you have the same version of the manuals, of course). Some distributions pack all the man...
Forum: Red Hat 10-23-2013
1,910
Posted By verdepollo
The answer really depends on the features your...
The answer really depends on the features your current environment is using.

Some third-party applications (e.g. Oracle, Teradata, Siebel, PeopleSoft, etc) are "certified" to run on RHEL 5.x but...
Forum: Red Hat 10-23-2013
3,590
Posted By verdepollo
That depends on the filesystem you use. ...
That depends on the filesystem you use.

Assuming you're using RHEL6 default (ext4) you have to mount the filesystem with the following options:
usrquota
usrjquota=aquota.user
jqfmt=vfsv0
...
Forum: Red Hat 10-23-2013
6,224
Posted By verdepollo
I'm a bit confused here. What exactly is the NIC...
I'm a bit confused here. What exactly is the NIC doing or not doing?

I'm assuming you configured the network (IP, mask, GW, etc) and that the network daemon is running.

Also, MAC are usually...
2,023
Posted By verdepollo
Do the resulting directories need to contain a...
Do the resulting directories need to contain a specific file type or can they be selected randomly as long as each directory does not exceed 8 GBs?
9,504
Posted By verdepollo
sed 's|/\([0-9][0-9]*\)|FW_SLASH\1|g' infile
sed 's|/\([0-9][0-9]*\)|FW_SLASH\1|g' infile
859
Posted By verdepollo
It depends on the shell. These are the most...
It depends on the shell. These are the most common:
set -o xtrace
sh -x <infile>
_DEBUG="on"
Forum: Red Hat 09-02-2013
4,495
Posted By verdepollo
Pretty sure the magic mouse requires non-standard...
Pretty sure the magic mouse requires non-standard drivers.

There's an unofficial driver named "hid-magicmouse" that you can get here (https://github.com/entrope/linux-magicmouse).

I haven't...
4,855
Posted By verdepollo
I *ONCE* ran echo $(($NUM/0))... needless to say...
I *ONCE* ran echo $(($NUM/0))... needless to say it was the last time we ever saw that server.

Joke aside, I agree the only way to do this is with some validation before the actual division...
4,514
Posted By verdepollo
Take a look at split. E.g: split -l 500000...
Take a look at split. E.g:
split -l 500000 infile
1,587
Posted By verdepollo
The description of the error is pretty clear on...
The description of the error is pretty clear on what is failing.

Use 600 for your private key:
chmod 600 /home/myapp/user1/.ssh/id_rsa
3,958
Posted By verdepollo
function function1() { case $1 in 1)...
function function1() {
case $1 in
1) do something ;;
2) do other something ;;
[3-9]) do some other something ;;
esac
}

call it with function1 $opt1
Forum: Cybersecurity 06-06-2013
3,550
Posted By verdepollo
Plus, it's never secure enough: ...
Plus, it's never secure enough:

http://imgs.xkcd.com/comics/security.png
Forum: Red Hat 06-05-2013
2,634
Posted By verdepollo
There isn't any standard for this, but as a rule...
There isn't any standard for this, but as a rule of thumb you don't want to include anything under /opt and /home.

The reverse process (converting an ISO to a VM appliance) should be pretty...
Forum: Red Hat 06-04-2013
2,634
Posted By verdepollo
Ah, so you already have a VM image. There's...
Ah, so you already have a VM image.

There's indeed a way to convert a VM appliance into a bootable/installable ISO. quemu-img does exactly that.

I have never used it though, but I bet Google...
29,390
Posted By verdepollo
I thought GNU grep was the crème de la crème of...
I thought GNU grep was the crème de la crème of speed.

In my system (GNU grep 2.6.3) it behaves better using an anchor than without it.

The original author (who does not maintain it any longer) has...
Forum: AIX 05-29-2013
7,517
Posted By verdepollo
That's a linux command; doesn't work that way in...
That's a linux command; doesn't work that way in AIX.

Try:
chdev -l inet0 -a route=0,192.48.226.1

or smitty route
Forum: Solaris 05-22-2013
4,222
Posted By verdepollo
You can still use /etc/rc*.d scripts; they're...
You can still use /etc/rc*.d scripts; they're still supported and work perfectly fine.

Services controlled by rc scripts show up as "legacy run" when you run svcs command.

If you want to make...
Forum: AIX 05-16-2013
13,401
Posted By verdepollo
A full-featured monitoring tool would be the best...
A full-featured monitoring tool would be the best approach, IMO.

A local monitoring script would be useless if the server reaches 100% memory usage and it's unable to monitor itself.

Take a...
3,539
Posted By verdepollo
Some additional results: :D iOS 6.1 (ARM...
Some additional results: :D

iOS 6.1 (ARM 32-bit):
heap: 0x129000
stack: 0x2fd16d00
argv: 0x2fd16d04


OSX 10.8 (Intel 64-bit):
heap: 0x1012fe000
stack: 0x7fff5e935bdc
argv: 0x7fff5e935be0...
Forum: AIX 05-07-2013
21,500
Posted By verdepollo
Using JFS2, there is no hard limit as far as I...
Using JFS2, there is no hard limit as far as I know.

There might be some limitations on the number of inodes your filesystem can allocate, although JFS2 can also perform on-demand inode...
Forum: Red Hat 04-30-2013
10,932
Posted By verdepollo
There's no guarantee that upon a system...
There's no guarantee that upon a system reinstallation UIDs remain the same.

Whatever user that used to belong to UID 504 apparently no longer matches its new UID.

You can chown -R your home...
Showing results 1 to 25 of 98

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