Archivo del Autor: carlosap
LFTP: limit bandwidth upload/download
set net:limit-rate «download bytes» : «upload bytes» Download y Upload 20mbps set net:limit-rate 10480000:10480000 set net:limit-rate 15480000:15480000 set net:limit-rate 20480000:20480000 10 Kb/s -> 10240 500 Kb/s -> 512000 Example: Upload 512kbs set net:limit-rate 0:512000 Example: Upload 20mbps set net:limit-rate 0:20480000
Oracle Lifts The Veil On Big Memory Sparc M6-32 System
http://www.enterprisetech.com/2013/09/22/oracle-lifts-veil-big-memory-sparc-m6-32-system/
Solaris installation on a SPARC T3 from a remote CDROM ISO
I wanted to install Solaris 11 Express on a SPARC T3-1 Server that was located in California. I was working in Massachusetts and had the ISO image of the Solaris 11 Express media on my laptop. Reading the SPARC T3-2 Server Documentation and the Integrated Lights Out Manager (ILOM) 3.0 Documentation it seemed that it would be possible to… Leer más »
nfs share solaris
to share a filesystem edit the /etc/dfs/dfstab and type in the following share -F nfs -o rw=client mountpoint of shared filesystem Note rw means read write permission use the right permission that will serve your need. it could be ro (read only). share -F nfs -o ro=client mountpoint of shared filesystem client is the client… Leer más »
Sun Remote System Control (RSC) 2.2 User’s Guide (sunfire 880 sunfire 890 )
El escape por default de la consola es «ctrl + ~.» Octal para SecureCRT » \033~. « Para mostrar el escape_char: rsc> show escape_char escape_char: ~ Console escape character sequence is used to return to the RSC prompt. The default escape sequence is «~.» (tilde period). See escape_char.
How to reset/recover Integrated Lights Out Manager (ILOM) password
How to reset/recover Integrated Lights Out Manager (ILOM) password October 22, 2012 in Oracle, Solaris Tags: recover ALOM password, recover ILOM password, reset ALOM password, reset ILOM password, reset T3 ALOM password, reset T4 ALOM password The default user and password of ILOM is “root/changeme”, but if you hv changed the password already and due for… Leer más »
XSCF console commands
Here are some basic XSCF console commands used on Sun hardware: To show all domains: XSCF> showdomainstatus -a To display logged users: XSCF> who To show domain 00 status: XSCF> showdomainstatus -d 00 To login to domain 00: XSCF> console -d 00 To send break: XSCF> sendbreak To displays sensors information: XSCF> showenvironment To lists… Leer más »
Create ramdisk on solaris
Create ramdisk on solaris #ramdiskadm -a idisk 512m #newfs /dev/ramdisk/idisk #mkdir /test #mount /dev/ramdisk/idisk /test When you’re finished with the RAM disk, umount and delete it like so: # umount /test # ramdiskadm -d idisk Incrementar memoria solaris: Edit /etc/system Add this line: set ramdisk:rd_percent_physmem=xx where xx is your percent.
Sharing directories with NFS in Solaris 10
Sharing directories with NFS in Solaris 10 You want to share a directory in Solaris, may be, the home of the users, or a directory with binaries. With svcs the service status can be checked, so lets check the status of the nfs server: -bash-3.00# svcs network/nfs/server STATE STIME FMRI offline 2:19:03 svc:/network/nfs/server:default The service… Leer más »