Archives
- October 2025
 - February 2025
 - January 2025
 - October 2024
 - August 2024
 - June 2024
 - May 2024
 - February 2024
 - December 2023
 - October 2023
 - June 2023
 - April 2023
 - August 2016
 - June 2016
 - May 2016
 - February 2016
 - December 2015
 - October 2015
 - May 2015
 - April 2015
 - January 2015
 - December 2014
 - November 2014
 - October 2014
 - January 2014
 - December 2013
 - November 2013
 - October 2013
 - August 2013
 - July 2013
 - May 2013
 - April 2013
 - March 2013
 - February 2013
 - January 2013
 - December 2012
 - November 2012
 - October 2012
 - September 2012
 - August 2012
 - July 2012
 - June 2012
 - April 2012
 
Categories
Meta
Category Archives: Linux
Create swap on HP-UX
HP-UX MBYTE=300 VG=vg00 LV=lv_swap2 LVOL=/dev/$VG/$LV ORG_DSKS=/dev/dsk/c0t12d0 MIRR=1 MIR_DSKS=/dev/dsk/c2t12d0 PRI=1 Option -s only works if physical VGs are defined only in EMC or Clariion disk type sudo lvcreate -n $LV -s y -r N /dev/$VG If it is not EMC nor … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on Create swap on HP-UX
							
		Booting an HP 4440 up in Single User mode
Booting HP-UX in Single-User Mode To boot to HP-UX in single-user mode, follow these steps: 1. At the BCH Main Menu, enter command or menu> bo pri. The following message displays: Interact with IPL (Y, N, or Cancel)?> 2. To … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on Booting an HP 4440 up in Single User mode
							
		Editing ulimit variables permanently
If you want to edit ulimit variables that return with the ulimit -a command: You can do it temporarily from the command line with the ulimit command, but to make it permanent, you have to put the change in /etc/security/limits.conf. … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on Editing ulimit variables permanently
							
		Chage
1) Set the password expiry date for username (*-M will update both “Password expires” and “Maximum number of days between password change”): chage -M number-of-days username *If the password expiry date is reached and user doesn’t change his password, the … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on Chage
							
		How to determine the RHEL version
[root@vickistan ~]# cat /etc/redhat-release CentOS release 6.6 (Final) If that doesn’t produce results, try this: [root@vickistan ~]# lsb_release -i -r Distributor ID: RedHatEnterpriseServer Release: 5.5
									
						Posted in Linux					
					
				
				
				Comments Off on How to determine the RHEL version
							
		How to check the version of an installed package
Ubuntu: dpkg -s PKGNAME Red Hat: rpm -q PKGNAME Arch Linux: pacman -Si PKGNAME
									
						Posted in Linux					
					
				
				
				Comments Off on How to check the version of an installed package
							
		Systemd
This is how to stop a running service temporarily: # systemctl stop servicename.service This stops it from starting at boot, but does not stop a running service: # systemctl disable servicename.service That also prevents it from being started by anything … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on Systemd
							
		MySQL Indexing Stuff
#Determine whether a table is indexed show index from [table name] #Display a table’s index mysql> show index from mysql.user; +——-+————+———-+————–+————-+———–+————-+———-+——–+——+————+———+—————+ | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | … Continue reading
How to create a local yum repository
Yum Server Side Take a look at the available repositories with the repolist option to yum: $yum repolist Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile epel/metalink | 13 kB 00:00 * base: mirror.symnds.com * epel: epel.mirror.constant.com * extras: … Continue reading
									
						Posted in Linux					
					
				
				
				Comments Off on How to create a local yum repository
							
		Understanding rpm Verify output
rpm -V output: S file Size differs M Mode differs (includes permissions and file type) 5 MD5 sum differs D Device major/minor number mismatch L readLink(2) path mismatch U User ownership differs G Group ownership differs T mTime differs
									
						Posted in Linux					
					
				
				
				Comments Off on Understanding rpm Verify output