sudo apt update
Saturday, April 25, 2020
Microsoft Office 365 User creation Guide
Wednesday, April 1, 2020
How to install and set up Webmin on Ubuntu /linux
sudo apt update
- Before you begin installing webmin it is required to installl apache on our server (Apache is platform used to run webmin and other browser based applications in Linux)
sudo apt install apache2
- Restarting apache
sudo systemctl restart apache2
- Downloading webmin: now we will need to download webmin by using the command below
wget http://prdownloads.sourceforge.net/webadmin/webmin_1.941_all.deb
- Installing Webmin Dependencies: If it is a new server it might complain for missing dependencies which can be downloaded and installed using the command below
apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl apt-show-versions python
- Installing Webmin: use dpkg command to install the downloaded file
dpkg --install webmin_1.941_all.deb
Webmin install complete.
You can now login to https://your_server_ip:10000
Sunday, March 29, 2020
How to install and setup Samba Server in Ubuntu/Linux
What is Samba?
Samba is program which allows end users to access and use file, printers and other shared resources over a network. Shared resources can also be accessed by other operating systems like Windows or Mac.
In this Guide we will be installing and configuring samba on Ubuntu server to access a folder through windows and mac.
Requirements
- Ubuntu 16.04 or higher
- Local area network to access files across.
If you have all the things ready, let’s begin.
Installing Samba
- Before installing samba we will make sure all our repositories are update by using command below
- Once the update is completed successfully we will be ready to install samba by using
sudo apt install samba
- Optional: To check if the installation of samba is successful or not we can use the command
whereis samba
- It should give you the following output
samba: /usr/sbin/samba /usr/lib/samba /etc/samba /usr/share/samba /usr/share/man/man7/samba.7.gz /usr/share/man/man8/samba.8.gz
Creating directory and setting up Samba Share
Now that we have installed samba we will be creating a new directory and sharing it across our network
- To create a directory we use the command mkdir
mkdir /home/<your user name>/share
- To configure samba file we need to go to the path which is etc/samba/smb.conf. To edit the samba configuration file use the below command
sudo nano /etc/samba/smb.conf
- Using the above command will open the configuration file and at the bottom of the file the following lines needs to be added in order to share the folder we have created earlier
[share]
comment = My first share on Ubuntu
path = /home/username/share
read only = no
browsable = yes - To save the file Ctrl+O (press and hold Ctrl button and press O) and to exit use Ctrl+X (press and hold Ctrl button and press X)
- Once we have successfully saved the configuration file we need to restart samba services by typing
sudo service smbd restart
or by using the following command below
sudo systemctl restart smbd
- Now in order to access the files from other computers on the network we will need to allow samba through ubuntu firewall, to update ubuntu firewall we will type
sudo ufw allow samba
- In order to access samba we need to create user password as it does not use default username password, to setup samba password for our user we will type
sudo smbpasswd -a username
In this post we have assumed that you already have a Ubuntu/Linux server installed but in case you want us to write a post on how to install samba server, let us know on the comments section below.
Tuesday, September 11, 2018
Solved: Windows could not complete the installation. To install windows on this computer, restart the installation.
This can be resolved by running msoobe.exe from oobe directory in system32 folder.
Step 1: Press and Hold Shift+F10 you will see a command prompt windows opened in your screen reference image below.
Enjoy 🙂
Monday, September 10, 2018
How to install and configure Epson PLQ20/30
Sunday, August 5, 2018
How to create pdf files directly from word or excel
Tuesday, July 31, 2018
How to Create a Bootable Linux/ubuntu USB Flash Drive
Requirements.
- Ubuntu/Linux ISO file. Click here to download latest version of Ubuntu.
- Rufus (Rufus is a utility that helps format and create bootable USB flash drives, such as USB keys/pendrives, memory sticks, etc) Click here to download Rufus.
- An 8GB Pendrive (Recommended).
After you have downloaded Ubuntu/Linux ISO follow the below mentioned steps to create a bootable ubuntu pendrive.
1. Run Rufus setup and open it software will open like this.
Select your pendrive in the Device dropbox.
Choose the Ubuntu ISO file you have downloaded in the Boot selection menu.
Change other settings according to the shown image and click start.
Enjoy 🙂
Error: Windows setup could not configure to run on this computer's hardware.
This error can be resolved by manually running msoobe.exe program and allow the installation to be completed manually.
Please follow the steps below to resolve the above mentioned error.
- During the error screen, press F10 which will open up command prompt.
- Type cd to exit the current directory.
- Type cd c:WindowsSystem32oobe and press enter (this command will take you to the windows oobe directory).
- Now type msoobe and press Enter. The installation process will now automatically resume from its previous state.