Skip to content

SysTutorials

  • Tutorials
  • Linux
  • Linux Manuals
  • Systems
  • Programming
  • Software
  • Subscribe
  • Search
SysTutorials

  • QA

    How to jailbreak iOS 7.1.2?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to jailbreak iOS 7.1.2 on a iPhone 4s? The Pangu Jailbreak Tool ( http://en.pangu.io/ ) works like a charm for my iPhone 4S with iOS 7.1.2. Remember to back up your data before jailbreaking your iPhone.

    Read More How to jailbreak iOS 7.1.2?Continue

  • QA

    How to adjust the system partition (C:) size of Windows?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    The disk management tools of Windows can adjust it to some level. But there are more space available as far as I can tell. How to further adjust the system partition (C:) size of Windows? You may check these tools: EASEUS Partition Master (free) Includes Partition Manager, Disk & Partition Copy Wizard and Partition Recovery…

    Read More How to adjust the system partition (C:) size of Windows?Continue

  • QA

    How to import a googlecode git project to github project

    ByWeiwei Jia Mar 24, 2018Jan 7, 2020

    I wanna migrate leveldb (code.google.com/p/leveldb) to my github repository. Create a new repo on github.com with this link https://help.github.com/articles/creating-a-new-repository git clone https://code.google.com/p/ project-name.git Set the remote origin url as follows: git remote set-url origin https://github.com/ username/ repo-name.git git pull to pull the latest. git push origin master after making local changes. This is the original…

    Read More How to import a googlecode git project to github projectContinue

  • QA

    How to find which hard drives a LVM volume uses?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to find which hard drives a LVM volume uses to decide which volume will be affected if a disk failes. You can use lvdisplay with the –maps option to display the the mapping of logical extents to physical volumes and physical extents: # lvdisplay –maps To map physical extents to logical extents, use #…

    Read More How to find which hard drives a LVM volume uses?Continue

  • QA

    Fix the Grub issue with Windows 8 UEFI after installing Fedora 20

    ByEric Ma Mar 24, 2018Mar 30, 2026

    Grub fails to boot with Windows 8 UEFI after installing Fedora 41. The Grub entry for Windows 8 is: menuentry ‘Windows Boot Manager’ { chainloader /EFI/Microsoft/Boot/bootmgfw.efi boot } How to fix it? The set root= is missing. You probably can fix this by specifying the root manually: menuentry ‘Windows Boot Manager’ { insmod part_gpt set…

    Read More Fix the Grub issue with Windows 8 UEFI after installing Fedora 20Continue

  • QA

    x86-64 instructions for floating-point comparisons

    ByEric Ma Mar 24, 2018Mar 24, 2018

    What are the x86-64 instructions for floating-point comparisons like the cmpq for quard-word integer comparison? The SSE3 extenstions provide two instructions for comparing floating values: Instruction Based on Description ucomiss S2, S1 S1 – S2 Compare single precision ucomisd S2, S1 S1 – S2 Compare double precision As with cmpq, they follow the GAS convention…

    Read More x86-64 instructions for floating-point comparisonsContinue

  • QA

    Video player for iPhone for uploading video files and watching them

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Which video player for iPhone is good for uploading video files from my computer and watching them? For example, I download some video files and would like to watch them on my iPhone on the go. I know iTune can do this. But I am on Linux and I want something easier. Many apps can…

    Read More Video player for iPhone for uploading video files and watching themContinue

  • QA

    How to download a youtube video to my computer?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to download a youtube video to my computer? You may use the ClipConverter.cc for downloading Youtube videos: http://www.clipconverter.cc/ How to download a YouTube video: Paste your YouTube URL at ‘Media URL’ and press Continue. Select the format and the options for the conversion. The default options are for most videos a good setting. Press…

    Read More How to download a youtube video to my computer?Continue

  • QA

    How to erase disk partitions on U disks on Windows?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to erase disk partitions on U disks on Windows? Check the HDD LLF low level format tool: http://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/ It is free for personal usage. Run it as Adminiatrator and you can choose to erase partitions and MBR on the U disks. Be careful that the operation is is recoverable.

    Read More How to erase disk partitions on U disks on Windows?Continue

  • QA

    Setting up a VPN over SSH

    ByEric Ma Mar 24, 2018Sep 18, 2022

    SSH tunnel and port forwarding is great and convenient to use. But is it possible to set up a VPN like connection over SSH? If you are on Linux or Mac, you can use sshuttle: https://github.com/apenwarr/sshuttle If you are on Windows, you can use ProxyCap: http://www.proxycap.com/index.html Both are great software.

    Read More Setting up a VPN over SSHContinue

  • QA

    Emacs Remembering Last Editing Positions

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to make emacs remember last editing positions in files. It will be convenient next time I open the same file the cursor automatically moves to the position I was last time editing the same file. The behavior seems enabled by default in Vim. How to make Emacs do this? I use the saveplace mode….

    Read More Emacs Remembering Last Editing PositionsContinue

  • QA

    Replacing with a string with newline in Emacs?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to replacing a string with another string with newline in Emacs? For example, to replace: good editor with good editor: Emacs What you need is actually to input a newline in Emacs: C-q C-j C-q is for quoted-insert, and C-j is a newline (0xa).

    Read More Replacing with a string with newline in Emacs?Continue

  • QA

    How to mark a line as deleted in BBCode?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to mark a line as deleted in BBCode? e.g. a line crossing through the text. You can use the [s] tag. The BBCode: [s]strikethrough text[/s] will be converted <s>strikethrough text</s>, <del>strikethrough text</del> or <span style=”text-decoration: line-through;”>strikethrough text</span> Check more at: http://en.wikipedia.org/wiki/BBCode

    Read More How to mark a line as deleted in BBCode?Continue

  • QA

    How to embed mp4 video in HTML pages?

    ByEric Ma Mar 24, 2018Feb 28, 2020

    I have a mp4 video file. How to embed it video in HTML pages? I use this piece of code: In HTML: <video class=”movie” src=”path/to/file.mp4″ controls></video> The CSS for “movie” class: .movie { max-width:1000px; } Here is one example.

    Read More How to embed mp4 video in HTML pages?Continue

  • QA

    Enlarging Linux UDP buffer size

    ByEric Ma Mar 24, 2018Jan 15, 2023

    One of the most common causes of UDP data gram lost on Linux is an undersized receive buffer on the Linux socket. How to enlarge Linux UDP buffer size? On Linux, you can change the UDP buffer size (e.g. to 26214400) by (as root): sysctl -w net.core.rmem_max=26214400 The default buffer size on Linux is 131071….

    Read More Enlarging Linux UDP buffer sizeContinue

  • QA

    Filter away non-printable ASCII characters on Linux?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Sometimes the commands’ output have some non-printable ASCII characters. How to filter away these non-printable ASCII characters on Linux? You can consider the problem as “how to leave only printable ascii characters?”. The printable characters in ASCII table are: Octal 011: Tab Octal 012: Line Feed Octal 015: Carriage Return Octal 040 to 176: printable…

    Read More Filter away non-printable ASCII characters on Linux?Continue

  • QA

    fclose Q2A theme

    ByEric Ma Mar 24, 2018Jun 22, 2018

    Can I get the fclose Q2A theme used here? I’d like to share it but I also want to keep my site a little bit unique. What about this: you can get the css and qa-theme.php files, but need to find or design your own icons for the site (I believe some icons from other…

    Read More fclose Q2A themeContinue

  • QA

    Hey can I please get your theme?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Trying to get your q2a theme. Is there a way you could send it on to me please? Would be incredibly appreciated The theme of the site ( https://www.systutorials.com ) is http://wordpress.org/themes/twentyfourteen with minor modifications. Some other features you find on the site are through plugins and HTMLs. If you are asking for the Q2A…

    Read More Hey can I please get your theme?Continue

  • QA

    Patching with git

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Tutorials on how to create patches and apply patches with git. A nice tutorial: https://ariejan.net/2009/10/26/how-to-create-and-apply-a-patch-with-git/ Manuals: git format-patch: https://www.systutorials.com/docs/linux/man/1-git-format-patch/git apply: https://www.systutorials.com/docs/linux/man/1-git-apply/

    Read More Patching with gitContinue

  • QA

    Setting sbt log level at the command line

    ByEric Ma Mar 24, 2018Mar 24, 2018

    sbt‘s log level can be set by execute set logLevel := Level.Error inside sbt. How to set the sbt log level at the command line? Add –error to sbt for specify the logLevel to error: sbt –error “your command”

    Read More Setting sbt log level at the command lineContinue

Page navigation

Previous PagePrevious 1 … 33 34 35 36 37 … 70 Next PageNext

© 2026 SysTutorials

  • Tutorials
  • Linux
  • Linux Manuals
  • Systems
  • Programming
  • Software
  • Subscribe
  • Search