Search Results

Search: Posts Made By: malikshahid85
Forum: Solaris 04-04-2011
13,922
Posted By @dagio
Does iostat -E returns you what you need?
Does iostat -E returns you what you need?
Forum: Solaris 01-07-2011
2,762
Posted By jim mcnamara
Solaris Locales Chart...
Solaris Locales Chart (http://developers.sun.com/dev/gadc/tools/lc/lc.jsp)

There are three locales available, download the one you want. If you are on Solaris 10, use localeadm to add the locale....
Forum: Solaris 01-07-2011
2,762
Posted By jlliagre
Whatever the arabic package you are referring to...
Whatever the arabic package you are referring to might be, it is very likely unrelated to the kernel so there would be no need to reboot.
1,869
Posted By Klashxx
If perl is ok: # cat stat.pl #!/usr/bin/env...
If perl is ok:
# cat stat.pl
#!/usr/bin/env perl

use File::stat;


$file=shift;
$stats = stat($file);
($sec, $min, $hr, $day, $month, $year, $day_Of_Week, $julianDate, $dst) =...
2,091
Posted By ctsgnb
sort $txt >txt.sorted find /u03 -type f | sort...
sort $txt >txt.sorted
find /u03 -type f | sort >biglist.sorted
comm -12 txt.sorted biglist.sorted


If you have only these /u03/a|b|c directory that have a lot of files in it, and if the list of...
Forum: Solaris 09-23-2010
4,854
Posted By mikejordan
According to the passwd man page, passwords must...
According to the passwd man page, passwords must be 6 chars, and only the first 8 characters are significant. So if you set your password to abc123abc123, anything starting with abc123ab will work....
Forum: Solaris 09-20-2010
16,928
Posted By hergp
You have to check /etc/ssh/sshd_config if root...
You have to check /etc/ssh/sshd_config if root access is allowed (default is not allowed). You need

PermitRootLogin yes
If you have to change sshd_config, you must restart ssh afterwards with
...
Forum: Solaris 09-20-2010
16,928
Posted By jlliagre
A poor security practice, but as you have telnet...
A poor security practice, but as you have telnet open anyway, change that line in /etc/ssh/sshd_config to:
PermitRootLogin yes
Forum: Solaris 09-20-2010
16,928
Posted By achenle
Change PermitRootLogin to "yes" in either...
Change PermitRootLogin to "yes" in either /etc/ssh/sshd_config or /etc/default/sshd_config. It's one of those files - I forget offhand which one.

Then restart the sshd service.
Forum: What is on Your Mind? 09-02-2010
7,110
Posted By zaxxon
Usually shell scripting is just a part of...
Usually shell scripting is just a part of skills/tasks a SysAdmin or dbAdmin should be able to do. I do not know of a job where you just do plain scripting and nothing else.

This thread is...
Forum: Solaris 09-01-2010
2,524
Posted By jlliagre
Zones on shared storage are currently...
Zones on shared storage are currently unsupported.
Bug ID: 6688400 Want zonepath on iscsi targets (http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6688400)
Bug ID: 4963321 RFE: hosting...
1,958
Posted By Franklin52
awk '{printf("%s%s",$0,NR%3?"\t":RS)}' file ...
awk '{printf("%s%s",$0,NR%3?"\t":RS)}' file

The command prints the line and a tab character if NR%3 != 0, otherwise it prints the line and a line feed.

If you aren't familiar with the mod...
Forum: Solaris 09-01-2010
2,524
Posted By fugitive
Sun Cluster works for x86-64 not on 32bit .. and...
Sun Cluster works for x86-64 not on 32bit .. and u can have zones considered as nodes .. where the cluster daemon runs in global zones or u can configure zone as failover resource between 2 physical...
7,801
Posted By citaylor
for files in [abc].Z ; do gunzip $files; done
for files in [abc].Z ; do gunzip $files; done
1,210
Posted By rdcwayx
I test the command again, and don't find any...
I test the command again, and don't find any issue.

-v option will exclude any files start with CAT, and end with A.Z or Q.Z.

$ cat infile
CAT_CO00102_20100816190955.Z...
1,290
Posted By rdcwayx
find /u03 -name "CAT_*0[0|1]?????"
find /u03 -name "CAT_*0[0|1]?????"
Showing results 1 to 16 of 16

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