Skip to content

Instantly share code, notes, and snippets.

View mongoltolbo's full-sized avatar

Lkhamsuren Amarjargal mongoltolbo

View GitHub Profile
@mongoltolbo
mongoltolbo / install Cadence IC 615.md
Created June 6, 2016 05:55
install Cadence IC 615

install Cadence IC 615 on CentOS 6.2: configure status failed Started by Duy Hien on 21 Jan 2015 6:35 AM. Topic has 4 replies and 9607 views. Last post on 12 May 2015 10:11 AM by venkat379. Hi everyone,

I have install Cadence IC Hotfix_IC06.15.171 on my computer: Linux CentOS 6.2 32 bit. But it seem that the Cadence IC does not support for Linux CentOS 6.2 version. Install Scape can install the Cadence but cannot configure. Please take a look at the screenshot and give me advices.

By the way, I would like to ask one more question: I am going to install Cadence IC 5.1.41 and IC 6.1.5 in same computer. Which operating system I should install?

Thank you.

@mongoltolbo
mongoltolbo / Gnome 3.20 repository for CentOSRHEL 7.x.md
Created June 5, 2016 05:41
Welcome to the Gnome 3.20 repository for CentOSRHEL 7.x.

Since Red Hat spoiled us with RHEL 7.2 by rebasing Gnome, but will not be again updating Gnome for 7.3, I felt I would continue that action for them.

CentOS/RHEL is a great platform to work with, but on a workstation it feels out of date. I intended to fix that. So I built Gnome 3.20 and its dependencies for that platform.

Welcome to the Gnome 3.20 repository for CentOS/RHEL 7.x.

@mongoltolbo
mongoltolbo / first things to do Centos.md
Last active June 5, 2016 04:54
first things to do Centos
@mongoltolbo
mongoltolbo / mount ntfs on centos.md
Created June 2, 2016 17:22
mount ntfs on centos

yum install fuse fuse-ntfs-3g

@mongoltolbo
mongoltolbo / Krusader on Centos.txt
Last active November 30, 2023 13:19
Krusader on Centos
EPEL sudo yum install epel-release
Krusader sudo yum localinstall http://rpms.plnet.rs/plnet-centos6-x86_64/RPMS.plnet-compiled/krusader-2.3.0-0.1.beta1.el6.x86_64.rpm
Gedit sudo yum install gedit
@mongoltolbo
mongoltolbo / grav.html
Created May 10, 2016 22:51
How to install PHP to run Grav CMS under Linux
:~$ sudo apt-get install php5
That will install the latest available release of the PHP package. Next, you should verify the version running the following command:
:~$ php -v
Be sure you get at least the 5.4 release, otherwise Grav will not work.
PHP 5.6.4-4ubuntu6.2 (cli) (built: Jul 2 2015 15:29:28)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2014 Zend Technologies
with Zend OPcache v7.0.4-dev, Copyright (c) 1999-2014, by Zend Technologies
@mongoltolbo
mongoltolbo / Linux : Restart PHP Service Command
Created May 10, 2016 07:14
Linux / Unix: Restart PHP Service Command
/etc/init.d/apache2 restart
@mongoltolbo
mongoltolbo / full image background
Created June 11, 2014 21:51
full image background
.section.header {
background-color: white;
background-position: center bottom,center top;
background-size: auto,cover;
background-image: url(https://slack.global.ssl.fastly.net/20651/img/tour/header_arrow.png);
background-repeat: no-repeat;
text-shadow: 0 1px 1px rgba(0,0,0,0.5);
min-height: 550px;
position: relative;
}
@mongoltolbo
mongoltolbo / NVIDIA Ubuntu
Created April 9, 2014 03:31
NVIDIA Ubuntu
sudo apt-add-repository ppa:xorg-edgers/ppa
sudo apt-get update
sudo apt-get install nvidia-current nvidia-settings
@mongoltolbo
mongoltolbo / css3 marquee
Created December 24, 2013 03:28
css3 marquee
<p class='marquee'>wow css3 marquee fun!</p>
p.marquee{
-webkit-animation-name: marquee;
-webkit-animation-timing-function: linear;
-webkit-animation-duration:10s;
-webkit-animation-iteration-count: infinite;
margin: 0;
padding: 0;
overflow: hidden;