Skip to content

SysTutorials

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

  • QA

    Max number of Emails allowed to Sent from Gmail SMTP per day

    ByEric Ma Mar 24, 2018Mar 11, 2019

    Gmail’s SMTP is convenient. You “sender” needs not to be always your Gmail address (but the emails will include your Gmail address in the header “send by”). I am wondering how many emails at maximum can I send each day through Gmail’s SMTP. Here there a nice recent list of the sending limits of the…

    Read More Max number of Emails allowed to Sent from Gmail SMTP per dayContinue

  • QA

    I cannot login Ubuntu Precise desktop

    ByWeiwei Jia Mar 24, 2018Jan 7, 2020

    I cannot login desktop in Ubuntu Precise. It told me following errors: Could not write bytes: Broken Pipe… Check Battery Satte Actually, I tried many ways to solve this problem. It seems that something wrong with my lightdm software so, at last, I use gdm software to replace lightdm to kill this problem. Just install…

    Read More I cannot login Ubuntu Precise desktopContinue

  • QA

    How to exclude last N columns in Bash on Linux?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to exclude last N columns of a string in bash? The point is that the number of columns in each line is uncertain (but > N). For example, I would like to remove the last 2 columns separated by ‘.’ in the following lines. systemd.3.gz systemd.mount.3.gz systemd.mount.f.3.gz The simple cut command cut -d’.’ -f1…

    Read More How to exclude last N columns in Bash on Linux?Continue

  • QA

    Vim turns to be slow after enabling some plugins, how to find which leads the problem?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Vim itself is very fast. But it turns to be slow after enabling some plugins. How to find which plugin leads the slowness of Vim? You may use the profiling mechanisms in Vim. Please check a tutorial on profiling Vim. For profiling Vim startup: vim –startuptime profile.log For profiling certain actions in Vim: :profile start…

    Read More Vim turns to be slow after enabling some plugins, how to find which leads the problem?Continue

  • QA

    List of all Xen hypervisor command line options

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Where can I find a list of all Xen hypervisor command line options that can be passed to Xen hypervisor during boot? This page lists all options of Xen hypervisor: Xen Hypervisor Command Line Options

    Read More List of all Xen hypervisor command line optionsContinue

  • QA

    Required packages for building YouCompleteMe for Vim on Fedora 21

    ByEric Ma Mar 24, 2018Mar 30, 2026

    YouCompleteMe for Vim on Fedora 41 reports this error: [zma@laptop:~/.vim/bundle/YouCompleteMe]$ ./install.sh — The C compiler identification is GNU 4.9.2 — The CXX compiler identification is GNU 4.9.2 — Check for working C compiler: /usr/bin/cc — Check for working C compiler: /usr/bin/cc — works — Detecting C compiler ABI info — Detecting C compiler ABI info…

    Read More Required packages for building YouCompleteMe for Vim on Fedora 21Continue

  • QA

    How to sort all files recursively by modification time in a directory on Linux?

    ByQ A Mar 24, 2018

    How to sort all the files in a directory and subdirectories recursively by modification time on Linux? You can make use of find (GNU find, or plus stat), sort and sed together to achieve recursively sort files by modification time: find . -type f -printf ‘%T@ %pn’ | sort -k 1 -n | sed ‘s/^[^…

    Read More How to sort all files recursively by modification time in a directory on Linux?Continue

  • QA

    How to edit eps file?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    I have made some eps figures for my paper but now I wanna modify them. How to edit them now? You may try inkscape on Linux: https://inkscape.org/en/ It can edit eps files.

    Read More How to edit eps file?Continue

  • QA

    What is Double-Blind review for a paper?

    ByWeiwei Jia Mar 24, 2018Jan 7, 2020

    I want to submit my paper to NAS 2015 but I am confused about its double-blind review 盲审又包括单盲审(Single-Blind Peer Review, SBPR)和双盲审(Double-Blind Peer Review, DBPR)。双盲审是审者与作者之间互相都不知道彼此身份的匿名评审。在双盲审的过程中,中间组织者的规范和保密工作很重要。单盲审一般是审者知道作者的身份,而作者不知道审者是谁。 计算机有不少会议实行双盲评审。 Reference: http://emuch.net/html/201104/3022021.html

    Read More What is Double-Blind review for a paper?Continue

  • QA

    How to make WordPress regenerate the thumbnails after I changing the media aspects?

    ByQ A Mar 24, 2018

    I recently changes the media aspects. The problem is that the existing thumbnails are not changed to the new aspects. How to make WordPress regenerate the thumbnails after I changing the media aspects? The “Regenerate Thumbnails” works like a charm for me: https://wordpress.org/plugins/regenerate-thumbnails/ . It allows you to regenerate your thumbnails after changing the thumbnail…

    Read More How to make WordPress regenerate the thumbnails after I changing the media aspects?Continue

  • QA

    How to redirect WordPress search query to Google CSE?

    ByEric Ma Mar 24, 2018Mar 11, 2019

    How to redirect WordPress search query to Google CSE? You can configure Google CSE to read the query variable (by default, it is q). Then, in your WordPress’s .htaccess file, add these 2 lines RewriteCond %{QUERY_STRING} ^s=(.*)$ RewriteRule ^ https://www.google.com/cse/publicurl?cx=xyz&q=%1 [R,L] Here, “https://www.google.com/cse/publicurl?cx=xyz” is your CSE’s public URL or the webpage that contains the Google…

    Read More How to redirect WordPress search query to Google CSE?Continue

  • QA

    How to move all the files under Users for a user to another drive on Windows?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    Unfortunately, my C: drive is almost full. Most of the space are used by the user home under C:Users. How can I move the home directory to another drive while not affecting the user’s usage of Windows. On Linux/Unix, moving the directory to another drive/partition and then keeping a softlink is enough. But how to…

    Read More How to move all the files under Users for a user to another drive on Windows?Continue

  • QA

    How to find which program or process is listening on a certain port in Linux?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    My program reports that the port is already used. How to find which program or process is listening on a certain port in Linux? You can use netstat to do this. netstat can print network connections. For example, to find which program is listing on port 9999 netstat -pln | grep 9999 You will need…

    Read More How to find which program or process is listening on a certain port in Linux?Continue

  • QA

    How to quite VirtualBox scale mode?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    How to quite VirtualBox scale mode? Use this hot key shortcut to quit VirtualBox scale mode Right_Ctrl + c

    Read More How to quite VirtualBox scale mode?Continue

  • QA

    How to limit the network rate used by scp in Linux?

    ByEric Ma Mar 24, 2018Jan 31, 2019

    I am using a shared network and scp to upload files. I do not want to use most of the bandwidth available. How to limit the network rate used by scp in Linux? You can use the -l option of scp to limit the rate of bandwidth. -l limit Limits the used bandwidth, specified in…

    Read More How to limit the network rate used by scp in Linux?Continue

  • QA

    VirtualBox report “Kernel driver not installed” on Fedora 21

    ByEric Ma Mar 24, 2018Mar 30, 2026

    VitualBox is installed on Fedora 41 by # yum install VirtualBox The following packages are installed kmod-VirtualBox-3.18.7-200.fc21.x86_64-4.3.20-4.fc21.4.x86_64 VirtualBox-4.3.20-3.fc21.x86_64 There is the kernel modules package installed. However, when running virtualbox (after reboot), it reports: [zma@laptop:~]$ virtualbox WARNING: The vboxdrv kernel module is not loaded. Either there is no module available for the current kernel (3.18.7-200.fc21.x86_64) or…

    Read More VirtualBox report “Kernel driver not installed” on Fedora 21Continue

  • QA

    How to resolve a domain name from a specific DNS server instead of the configured one in Linux?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    I would like to check whether the domain name’s IP has changed in the authoritative DNS server. The system’s configured DNS server may still cache the old IP, which is fine. The question is how to query from the authoritative DNS server the new IP? You can use dig – DNS lookup utility to query…

    Read More How to resolve a domain name from a specific DNS server instead of the configured one in Linux?Continue

  • QA

    How to configure interface bonding in Linux?

    ByEric Ma Mar 24, 2018Mar 11, 2019

    How to configure interface bonding to bound to 2 eth interfaces together in Linux, specifically CentOS/RHEL? This tutorial Configuring Interface Bonding on CentOS/RHEL/OEL 6.x introduces setting up interface bonding well on CentOS / RHEL / OEL 6.

    Read More How to configure interface bonding in Linux?Continue

  • QA

    How to use OpenVPN together with Ovpn Spider on iPhone?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    But.. how to use the OpenVPN together with Ovpn Spider on iPhone? You can check OpenVPN + Ovpn Spider: Free VPNs for iPhone Users.

    Read More How to use OpenVPN together with Ovpn Spider on iPhone?Continue

  • QA

    How to reset iOS / iPhone password?

    ByEric Ma Mar 24, 2018Mar 24, 2018

    I host lost the password of my iPhone. How to erase or reset it? Check Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled from Apple for how to reset the passcode. As all methods will erase your iPhone, the “Recovery mode” method may be the most easier and reliable…

    Read More How to reset iOS / iPhone password?Continue

Page navigation

Previous PagePrevious 1 … 25 26 27 28 29 … 70 Next PageNext

© 2026 SysTutorials

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