Search

Total Pageviews

Categories

Linux (8) Windows (5) Container (4) Development (4) Database (3) Docker (3) Mac OS (3) QuickStart (3) Ubuntu (3) AWS (1) Fedora (1) FreeBSD (1) Git (1) Java (1) MyBatis (1) Oracle Linux (1) Spring Boot (1) Unix (1) VMware (1) Virtualization (1) kdevtmpfsi (1) kinsing (1)

Featured Post

Your container's CPU usage is more than 100%, "kdevtmpfsi" the cryptomining malware is running | So how to resolve

How to resolve when "kdevtmpfsi" the crypto-mining malware is running and taking all CPU load of your server (container). One d...

Showing posts with label Ubuntu. Show all posts
Showing posts with label Ubuntu. Show all posts

Saturday, July 1, 2017

How to Install and use the Linux Ubuntu Bash Shell on Windows 10

Ubuntu-based Bash shell that can run Linux software directly on Windows. Ofcourse, only softwares based on Bash Shel. This isn’t a virtual machine, a container, or Linux software compiled for Windows (like Cygwin).


This is the version of Windows 10 I'm using to install Linux Ubuntu Bash Shell.



Please make sure your Windows 10 is up to date.


Open the Settings app and head to Update & Security > For Developers. Activate the “Developer Mode” switch here to enable Developer Mode.



Next, open the Control Panel, click “Programs,” and click “Turn Windows Features On or Off” under Programs and Features. Enable the “Windows Subsystem for Linux (Beta)” option in the list here and click “OK.”



After you do, you’ll be prompted to reboot your computer. Click “Restart Now” to reboot your computer and Windows 10 will install the new feature.


After your computer restarts, click the Start button (or press the Windows key), type “bash”, and press “Enter.”

You’ll be prompted to accept the terms of service. You’ll be asked to create a user account and password for use in the Bash environment.


Open your Start menu and search for “bash” or “Ubuntu.” You’ll see a “Bash on Ubuntu on Windows” application.

So now you can using your Linux favorite commands and install bash tools on Windows 10 as you familiar on your Linux.



Please refer to get more info about Linux Ubuntu Bash Shell on Windows 10.

Friday, October 28, 2011

Fix grub boot loader

- Boot to Rescue from Linux installation CD
- Enter command: grub

# grub

grub> find /boot/grub/stage1 #OR /boot/grub/grub.conf OR /grub/grub.conf -> It show: (hdx,y) with x,y from 0 to n.
grub> root(hdx,y)
grub> setup(hdx)
grub> quit

=> done

Thursday, April 21, 2011

How to enable a script auto startup with system on ubuntu server ?

  1. Create a script in the /etc/init.d/ directory
  2. Make the script executable
    $ sudo chmod +x /etc/init.d/myscript.sh
  3. Make the script start at bootup
    $ sudo update-rc.d myscript.sh defaults
Note: the option “defaults” puts a link to start your script in runlevels 2, 3, 4 and 5, and puts a link to stop in runlevels 0, 1 and 6.

Referenced from: