Instalatiion xampp step by step
Jumat, 18 September 2020
Senin, 10 Agustus 2020
How to update Kali?
To update Kali, first ensure that /etc/apt/sources.list is properly populated:
kali@kali:~$ cat /etc/apt/sources.list
deb http://http.kali.org/kali kali-rolling main contrib non-free
deb-src http://http.kali.org/kali kali-rolling main contrib non-free
kali@kali:~$
After that we can run the following commands which will upgrade us to the latest Kali versions:
kali@kali:~$ sudo apt update
kali@kali:~$
kali@kali:~$ sudo apt full-upgrade -y
kali@kali:~$
Jumat, 07 Agustus 2020
Howto Single User in KaliLinux
Use Grub to Boot into Single User Mode
- Edit the Grub Menu
- Instructions
- Make sure Debian GNU/Linux, with Linux 3.7-trunk-686-pae is highlighted.
- Press "e".

- Instructions
- Cursor Placement
- Instructions
- Cursor down to the line that starts with "linux /boot/vmlinuz-3.7-trunk...".
- Cursor right until the cursor is positioned at the end of the line. In my case, my cursor is directly after the string quiet.
- Continue to next step.

- Instructions
- Delete Some Characters
- Instructions
- Use the backspace key to delete the
following characters:
- "o initrd=/install/gtk/initrd.gz quiet"
- Continue to next step.
- Use the backspace key to delete the
following characters:

- Instructions
- Add the string "w init=/bin/bash"
- Instructions
- Type the follow string after the "r".
- w init=/bin/bash
- Press <Ctrl> and "x" to boot to single mode.
- Type the follow string after the "r".

- Instructions
- Welcome to root (Got
Root?)
- Instruction:
- id
- Note(FYI):
- You are the root user. Congrats!!!
- Continue to next section.

- Instruction:
Minggu, 02 Agustus 2020
Troubel in fstab file
Error in file fstabI had a typo in my fstab and it boots to a commandline but is readonly, I know what the error is but i can't change it because it's mounted as readonly. I want to mount the filesystem and make the changes. I know I can boot a live distro and edit it that way, but i was wondering if there was an easier way to do it.
Yes, if you end up in single-user mode with a readonly root, try:
mount / -o remount,rwhat was very easy to correct fstab from readonly mode. We must mount / in read-write mode.
If /etc/fstab is correct, you can simply type:
mount -n -o remount /
But if /etc/fstab is wrong (as it was in my case), you must give the device name and possibly the type, too: e.g.
mount -n -o remount -t extX /dev/hdaX /
Where extX is your filesystem type and /dev/hdaX -- is partition you use for your root mount point.
To see all your available partitions just type ls /dev/[sh]d*.
mount -n -o remount -t extX /dev/hdaX /
I was on Orangepi3 EMMC when I had a typo in UUID of root having ext4 filesystem.
The command remounted in read-write mode and I fixed my fstab
mount -n -o remount -t ext4 /dev/mmcblk2p1 /
Sabtu, 01 Agustus 2020
Make Installer on Linux
fix file fstab
Try remounting it read-write:
sudo mount -o remount,rw '/dev/sdax'If the device has a write lock on it (like SD memory cards), you need to turn it off. Hardware locks cannot be disabled by software. Note that the write lock on SD memory cards is located from the sight you see the letters near the up left corner and it looks like a very small switch.
Some filesystem drivers may also not support write operations, this is the case with the older NTFS module supported by Linux. For NTFS filesystems, be sure to use the ntfs-3g driver which should be picked automatically nowadays. If not, you can force the driver with something like:
sudo mount -t ntfs-3g -o uid=$(id -u) /dev/sdax /mnt/
(where /dev/sdbx has to be substituted for your block device and /mnt/ for your destination)
Selasa, 05 Mei 2009
Quota User in Linux
1.Check whether your hard drive / and /home one partition or no.
1.Edit file /etc/fstab
/dev/hda5 /home ext3 defaults,usrquota,grpquota 1 2
2. Make files db quota
touch /home/aquota.user
touch /home/aquota.group
3.Remount File System
mount -oremount /home
4.Make table current disk usage per file system
quotacheck -vug /home -m
5.quotaon
quotaon -vug /home
6.List quota
repquota -a
7. Make quota per user
setquota -u very 100000 110000 0 0 -a
have i nice try.