NBO mining app download 6
I also use almost all the mining software on the market. Many of them say they don't smoke, but I actually smoke them, and the highest one is even 20% (this friend told me that I didn't use a certain software myself)
the number of old miners has increased graally from a few to now. I recommend Marvel Moore for the large ones. It's really tiring to have no disk and one by one if the disk drops. No, look at the income chart
Mining app, mining on the mobile phone or forget it, on the point of computing power of the mobile phone, mining is basically impossible, to mine or have to dig on the computer. This is a screenshot of the ha Yu miner I used before. Take a look
I had done a USB mining project before, and the boss cheated a lot of money. It's also working with a lot of big companies.
1. Try to restart the device
warm tips: if the mobile phone is stuck for a long time and can't be used, don't worry. Please press and hold the power button and volume button at the same time for more than 7 seconds to restart the device
2. End the background program. If there are many background programs, it will affect the running speed of the mobile phone
3. Due to insufficient memory, please delete unnecessary files or programs
4. The third-party software is stuck. It is recommended to try to re install other channel versions
5. Try to restore the factory settings. When restoring, be sure to back up the important data in advance
if the above methods are invalid, please bring the purchase invoice, warranty card and the machine to Samsung service center, and the professional after-sales engineer will handle it for you.
Linux is basically a multi language version. It is recommended that you use Redflag 5.0 for Dell OEM (i.e. red flag Linux system for red flag 5.0 Dell brand computers), which integrates common tool software and entertainment software, and operates the same as windows. Personally, I think that version has better support for hardware than the red flag official download, such as graphics card, mobile hard disk, U disk, In the past, the official version couldn't drive 1024 * 768, and it couldn't recognize the CD-ROM drive and mobile hard disk (I later learned that it had to be manually mounted). However, the Dell OEM version can recognize these automatically, just like windows, I deleted ~
with one mouse button and gave you a download address http://www.linuxsir.org/bbs/showthread.php?t=294791
here is an extreme installation method. What is extreme? No CD-ROM, no floppy drive, ha ha.
the premise of this article is that you have installed a Windows 2000 / Windows XP system, install winghub under windows, set up boot, after installation and setting up, After restart, press F8 to enter the operating system menu. Select mygrub menu
winggrub to boot Linux Installation. In this case, how to install Linux? The key point of this paper is here
1. A brief introction to the system boot manager
Grub is a multi operating system boot manager; Winghub is the Windows version of grub
2. Installation of winghub:
1. Download address: http://grub4dos.sourceforge.net
in the above website, there is a download page, which is called winghub
2. Installation:
1] install grub software into the machine, click the mouse, you should be able to install it directly according to its default installation, and then install it in the next step
2] install grub
open the wingrub program, select the tools menu, and then click Install grub to open a dialog box
there are two methods for us to choose from I suggest b)
A) let's just click boot from grub partition, and then click the next box on the right; Select which partition to install in, and then press [install] at the bottom
you may see (hd0,0) or (hd0,1) in the dialog box of the drop-down menu, so select (hd0,0); If you only see (hd0,1), it means that your first partition is NTFS, which is normal; If you can't see any drop-down box, you can see the following method
b) you can click systerm device, and then select C in the right selection box; Then click boot from boot.ini, if not, change it; Write mygrub in the title; Then write 10 in time out
so grub is installed; His configuration file is in C: grub. The configuration file is C: grub: menu. LST, which plays a decisive role; So we must write well; There is no difference between syntax and Linux; It's the same
there is still a little difference between a and B. the method of a is to start up and see all the systems in menu.lst; For B, you have to click the mygrub we filled in just now to see the system mentioned in menu.lst
3. Configure grub
in fact, the simplest configuration method does not come from the graphical click of the mouse. The younger brother who is learning Linux may say, what can I do without clicking the mouse? Oh.... Yes, but in the process of configuring grub, the most inefficient is to click the mouse; In fact, we click the mouse for more than ten minutes to achieve a goal, which is to configure grub. And his configuration file is C: / / grub / menu.lst. We sweat like a rain to click the mouse to configure this file; If you don't need to click the mouse to configure it,
is OK in less than a minute; Just a little skill; What's the difficulty
in the process of configuring C: \% grub \% menu.lst, we just use the wingrub view partition interface again, and the rest can be written in Notepad; c: If we want to add C: grub to the browser, we can see it by
0] open winghub, click Tools = > partioinlist (partition list), here you can find the partition of the machine, such as the partition of FAT32 we may see is (hd0,1), and so on. In fact, we really need FAT32 to store the downloaded Linux CD image; Through this, we can know that we have stored the CD ISO in (HDX, y), and we can also know which Windows partition (HDX, y) corresponds to, whether it is C, D, or e. get it
1] first, we find a fat 32 partition and put the downloaded ISO directly under the root directory of the partition, not in any directory
2] create a directory in this partition, such as Linux, extract two files vmlinuz and initrd.img from isolinux in the first ISO, and put them in the Linux directory; Pay attention to only put these two files, do not put other content, if you put other, you may exit in the middle of installation
note: the directory name is lowercase; When we write menu.lst, we should use half width English, punctuation and so on; Title Root kernel initrd is all lowercase English; Pay attention to case
3] is it difficult for me to write menu.lst? It's not hard
after we open menu.lst, there may be content in it, such as a timeout 10. If there is no such line, you can write it yourself; There is nothing difficult
timeout 10 { this is the time to start up and wait to enter the system, which is 10 seconds
Title Windows XP { we all have windows in our machines, which is used to start windows; There are four lines in total. Don't make a mistake. You can them into your configuration file
root (hd0,0)
makeactive
chainloader + 1
simple menu.lst configuration Linux boot instructions; Through menu.lst, we can configure the startup and boot of Linux; Not only the installed boot, but also the installed Linux system; There are four grammatical structures, such as: a total of
has two writing formats, either one
format 1: the simplest:
code:
Title redflag5
root (hd0,1)
kernel (hd0,1) / Linux / vmlinuz
initrd (hd0,1) / Linux / initrd.img
title this line is the menu we see when we boot up, which shows redflag5. To be added after the title, the title must be retained, It's the syntax label of grub. We can write what we want to add after the title, which can be defined by ourselves
, such as Title redflag5
root (hd0,1) can be used to start with root, and then add a space. As for which partition you put vmlinuz and initrd.img in, open winghub, click Tools = > partioinlist to find the line
kernel, start with kernel, and then add a space, which partition vmlinuz file is put in, Which directory; Except for a space after the kernel, there are no spaces in this line; This line says that we use the kernel in the Linux directory under the (hd0,1) partition to start the kernel
initrd is similar to kernel; It's not difficult. I know which partition and directory I put my files in
format 2: more troublesome: understand and see
code:
Title redflag5
root (hd0,1)
kernel / Linux / vmlinuz ro root = / dev / HDA6
initrd / Linux / initrd.img
title this line is the menu we see when we boot up, which shows redflag5. To be added after the title, the title must be reserved, which is the label of grub syntax, We can write what we want to add after the title, which can be defined by ourselves, such as Title fc4setup
The lineroot, in this example, is root (hd0,1). This line is found when we open winghub and click Tools = > partioinlist; We know the partition and path of vmlinuz and initrd.img through this
how to realize double start
After the installation ofRed Flag 5.0, it will automatically install al start
what should be paid attention to in the installation process
two special reminders:
1. Don't select "automatic partition" when partitioning, players move the partition
2. Put the ISO of red flag in FAT32 partition, such as e disk
recommended partition scheme:
-
since NTFS is selected for your C disk (system disk), it is recommended to adjust it to FAT32 partition. If you do not change it, it may cause unknown error, because Linux system only supports reading NTFS, not writing
-
adjustment method: partionmagic can be used to adjust. Pay attention to backup with ghost
First, transfer the data of disk f to disk e, and allocate 8g space from disk F: -
linux / root partition is at least 3G, 7-8g is recommended
-
100m is enough for Linux / boot boot boot partition
-
linux swap partition 520m (generally similar to the size of memory)
< / OL >
this paper is cited to & quot; http://..com/question/34065285.html" Hope to give you some reference< br />